diff options
| author | Fuwn <[email protected]> | 2021-05-06 14:00:27 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 14:00:27 +0000 |
| commit | 283ac199d779f597fe50f5ffa10a9d4b0158d17d (patch) | |
| tree | eb567d8da28aa3bba4008bfe46df5b9a223699fc | |
| parent | refactor(docker): use entry-point syntax for starting process (diff) | |
| download | whirl-283ac199d779f597fe50f5ffa10a9d4b0158d17d.tar.xz whirl-283ac199d779f597fe50f5ffa10a9d4b0158d17d.zip | |
fix(docker): expose correct port
| -rw-r--r-- | docker.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" ]; |