nixos-configs/devices/nos/modules/docker/hauk/compose.nix

15 lines
324 B
Nix
Raw Normal View History

2024-07-24 15:49:31 -04:00
{pkgs, ...}: {
khepri.compositions."hauk" = {
networks.proxy_net = {external = true;};
2024-02-28 12:45:17 -05:00
services."hauk" = {
image = import ./images/hauk.nix pkgs;
restart = "always";
ports = ["3003:80"];
networks = ["proxy_net"];
volumes = ["${./config.php}:/etc/hauk/config.php:ro"];
};
2024-02-28 12:45:17 -05:00
};
}