nixos-configs/devices/nos/modules/docker/hauk/compose.nix
matt1432 59d2205e7a
All checks were successful
Discord / discord commits (push) Has been skipped
fix(docker): add required changes to make every container work
2024-07-24 20:52:32 -04:00

14 lines
324 B
Nix

{pkgs, ...}: {
khepri.compositions."hauk" = {
networks.proxy_net = {external = true;};
services."hauk" = {
image = import ./images/hauk.nix pkgs;
restart = "always";
ports = ["3003:80"];
networks = ["proxy_net"];
volumes = ["${./config.php}:/etc/hauk/config.php:ro"];
};
};
}