summary refs log tree commit diff
diff options
context:
space:
mode:
authorCyberL1 <cyber.hf18@gmail.com>2026-02-14 18:21:35 +0100
committerRory& <root@rory.gay>2026-02-14 18:25:17 +0100
commit0e2e220933baaed06cec0f9dbe98feef9f381276 (patch)
treeee19fdbccb66c53bd7b6ab879ade7847e6483808
parentAllow for smarthosts/local SMTP relays that dont use user/pass AUTH (diff)
downloadserver-ts-0e2e220933baaed06cec0f9dbe98feef9f381276.tar.xz
fix: env in docker containers
-rw-r--r--flake.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/flake.nix b/flake.nix

index 8d7dc413..3b3b55b4 100644 --- a/flake.nix +++ b/flake.nix
@@ -49,10 +49,9 @@ ]; config = { Cmd = [ "${self.outputs.packages.${system}.default}/bin/start-bundle" ]; - # TODO: figure this out - #Env = { - # PORT = "3001"; - #}; + Env = [ + "PORT=3001" + ]; Expose = [ "3001" ]; }; }; @@ -70,10 +69,9 @@ ]; config = { Cmd = [ "${self.outputs.packages.${system}.default}/bin/start-${mod}" ]; - # TODO: figure this out - # Env = { - # PORT = "3001"; - # }; + Env = [ + "PORT=3001" + ]; Expose = [ "3001" ]; }; }