aboutsummaryrefslogtreecommitdiff
path: root/docker.nix
Commit message (Collapse)AuthorAgeFilesLines
* style(nix): nixfmtFuwn2021-07-181-1/+2
|
* feat(docker): expose .whirl directory to host as a volumeFuwn2021-06-091-2/+2
| | | | | | | | 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.
* refactor(database): rename database fileFuwn2021-06-091-1/+1
| | | | | | The file name `whirl.sqlite3` is redundant as the file is already in the `.whirl` directory. BREAKING CHANGE: Database file renamed
* feat(global): move whirl-generated files to their own directoriesFuwn2021-06-091-1/+1
| | | | | | | | | | | | | This change is in preperations to the new Docker Compose configuration changes that are planned for the near future. Currently, the Docker Compose configuration does NOT have persistant storage in the form of Docker Volumes, that will change once the planned updates are pushed. The reason Docker Volumes might have not been possible (or at least difficult) is due to the fact that Whirl-generated files were just thrown about, e.g., `whirl.sqlite3`, `Whirl.toml`, all of these files had no central location so having a shared folder in the form of Docker Volume between the container and the host wasn't very possible.j BREAKING CHANGE: Whirl-generated files are moved to their own directories, if the files are not moved, Whirl will continue to look for these files and panic due to being unable to find them!
* fix(docker): wrong port being exposed for apiFuwn2021-05-171-1/+1
|
* fix(nix): nix buildsFuwn2021-05-171-1/+5
| | | | Fix Docker and Nix intergration via rename.
* fix(docker): image creation dateFuwn2021-05-061-0/+1
|
* fix(docker): expose correct portFuwn2021-05-061-1/+1
|
* refactor(docker): use entry-point syntax for starting processFuwn2021-05-061-1/+2
|
* docs(docker): expose ports (doc) at the image levelFuwn2021-05-061-0/+5
|
* docs(docker): sha256 notesFuwn2021-05-061-0/+6
|
* feat(docker): extends alpineFuwn2021-05-061-6/+9
| | | | Enables further extensibility, as well, Alpine is only 5 megabytes so the overhead is minimal.
* fix(docker): the dockeringFuwn2021-05-061-2/+8
| | | | Fix Docker functionalities.
* feat(nix): spice it all upFuwn2021-05-061-0/+23