diff options
| author | Fuwn <[email protected]> | 2021-06-09 18:55:30 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-09 18:55:30 +0000 |
| commit | a496a3b2c791b3f3f5adc7417eb9de14716f5f7c (patch) | |
| tree | 6faacf2ef3856eee0647be531cdd2e6c7cd75d06 /.gitignore | |
| parent | feat(cli): create `.whirl` directory and log (diff) | |
| download | whirl-a496a3b2c791b3f3f5adc7417eb9de14716f5f7c.tar.xz whirl-a496a3b2c791b3f3f5adc7417eb9de14716f5f7c.zip | |
feat(docker): expose .whirl directory to host as a volume
Previously, Whirl would grab the default configuration data from the the `Default` trait of
`Config`, this means that the configuration of a Docker container could not be modified. As well,
the database would be reset upon the restart of the Docker container... This solution introduces a
shared Volume directory with the label `.whirl-data` which acts as a means of persistant data
storage for Whirl.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -29,3 +29,6 @@ result* # NPM /node_modules/ + +# Docker +/.whirl-data/ |