aboutsummaryrefslogtreecommitdiff
path: root/docker.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-09 12:25:27 +0000
committerFuwn <[email protected]>2021-06-09 12:25:27 +0000
commit6c516b132bd58c11a2380a28b2db2b2e6b81bc52 (patch)
tree0bc4b9bd6f0dac69ae84365f0013cdd343b84712 /docker.nix
parentrefactor(config): rename `Whirl.toml` to `Config.toml` (diff)
downloadwhirl-6c516b132bd58c11a2380a28b2db2b2e6b81bc52.tar.xz
whirl-6c516b132bd58c11a2380a28b2db2b2e6b81bc52.zip
refactor(database): rename database file
The file name `whirl.sqlite3` is redundant as the file is already in the `.whirl` directory. BREAKING CHANGE: Database file renamed
Diffstat (limited to 'docker.nix')
-rw-r--r--docker.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker.nix b/docker.nix
index 79e3308..7e92487 100644
--- a/docker.nix
+++ b/docker.nix
@@ -33,7 +33,7 @@ let
Cmd = [ "run" ];
WorkingDir = "/";
Env = [
- "DATABASE_URl=.whirl/whirl.sqlite3"
+ "DATABASE_URl=.whirl/db.sqlite3"
"DISABLE_PROMPT=true"
"LOG_FILE=false"
];