diff options
| author | Fuwn <[email protected]> | 2021-05-06 13:52:47 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 13:52:47 +0000 |
| commit | 97f851ed1f37ca62cc5b076248fe8b8ddc69ef1b (patch) | |
| tree | 35f510f8e91db6778d7800a9121653249e94dc18 | |
| parent | fix(make): docker-load uses shell script (diff) | |
| download | whirl-97f851ed1f37ca62cc5b076248fe8b8ddc69ef1b.tar.xz whirl-97f851ed1f37ca62cc5b076248fe8b8ddc69ef1b.zip | |
docs(docker): expose ports (doc) at the image level
| -rw-r--r-- | docker.nix | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 + }; }; }; |