aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docker.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/docker.nix b/docker.nix
index 1164bd8..4c62d48 100644
--- a/docker.nix
+++ b/docker.nix
@@ -32,6 +32,11 @@ let
Cmd = [ "/bin/whirl" "run" ];
WorkingDir = "/";
Env = [ "DATABASE_URl=whirl.sqlite3" "DISABLE_PROMPT=true" ];
+ ExposedPorts = {
+ "8000/tcp" = { }; # API
+ "6659/tcp" = { }; # Distributor
+ "5673/tcp" = { }; # Hub
+ };
};
};