aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docker.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker.nix b/docker.nix
index 4c62d48..d8ac9bc 100644
--- a/docker.nix
+++ b/docker.nix
@@ -29,7 +29,7 @@ let
contents = [ pkg ];
config = {
- Cmd = [ "/bin/whirl" "run" ];
+ Cmd = [ "run" ];
WorkingDir = "/";
Env = [ "DATABASE_URl=whirl.sqlite3" "DISABLE_PROMPT=true" ];
ExposedPorts = {
@@ -37,6 +37,7 @@ let
"6659/tcp" = { }; # Distributor
"5673/tcp" = { }; # Hub
};
+ EntryPoint = [ "/bin/whirl" ];
};
};