Nix: add PORT=3001 for containers by default

This commit is contained in:
Rory&
2026-02-13 16:21:56 +01:00
parent d4dc8ba7df
commit 3b809884ff
2 changed files with 6 additions and 0 deletions
+6
View File
@@ -44,6 +44,9 @@
contents = [ self.packages.${system}.default ];
config = {
Cmd = [ "${self.outputs.packages.${system}.default}/bin/start-bundle" ];
Env = {
PORT = "3001";
};
Expose = [ "3001" ];
};
};
@@ -58,6 +61,9 @@
];
config = {
Cmd = [ "${self.outputs.packages.${system}.default}/bin/start-${mod}" ];
Env = {
PORT = "3001";
};
Expose = [ "3001" ];
};
}
View File