aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-06 14:00:27 +0000
committerFuwn <[email protected]>2021-05-06 14:00:27 +0000
commit283ac199d779f597fe50f5ffa10a9d4b0158d17d (patch)
treeeb567d8da28aa3bba4008bfe46df5b9a223699fc
parentrefactor(docker): use entry-point syntax for starting process (diff)
downloadwhirl-283ac199d779f597fe50f5ffa10a9d4b0158d17d.tar.xz
whirl-283ac199d779f597fe50f5ffa10a9d4b0158d17d.zip
fix(docker): expose correct port
-rw-r--r--docker.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker.nix b/docker.nix
index d8ac9bc..9d216c1 100644
--- a/docker.nix
+++ b/docker.nix
@@ -34,7 +34,7 @@ let
Env = [ "DATABASE_URl=whirl.sqlite3" "DISABLE_PROMPT=true" ];
ExposedPorts = {
"8000/tcp" = { }; # API
- "6659/tcp" = { }; # Distributor
+ "6650/tcp" = { }; # Distributor
"5673/tcp" = { }; # Hub
};
EntryPoint = [ "/bin/whirl" ];