aboutsummaryrefslogtreecommitdiff
path: root/docker.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-06 14:00:27 -0700
committerFuwn <[email protected]>2021-05-06 14:00:27 -0700
commit529c91f08483b8cbdd9ac5dd525ab4235ce00524 (patch)
treeb3ba41424f83d6d308c6debdf0b964b94d8225aa /docker.nix
parentrefactor(docker): use entry-point syntax for starting process (diff)
downloadwhirl-529c91f08483b8cbdd9ac5dd525ab4235ce00524.tar.xz
whirl-529c91f08483b8cbdd9ac5dd525ab4235ce00524.zip
fix(docker): expose correct port
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 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" ];