diff options
| author | Fuwn <[email protected]> | 2021-05-06 14:00:27 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 14:00:27 -0700 |
| commit | 529c91f08483b8cbdd9ac5dd525ab4235ce00524 (patch) | |
| tree | b3ba41424f83d6d308c6debdf0b964b94d8225aa /docker.nix | |
| parent | refactor(docker): use entry-point syntax for starting process (diff) | |
| download | whirl-529c91f08483b8cbdd9ac5dd525ab4235ce00524.tar.xz whirl-529c91f08483b8cbdd9ac5dd525ab4235ce00524.zip | |
fix(docker): expose correct port
Diffstat (limited to 'docker.nix')
| -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" ]; |