2024-07-24 15:49:31 -04:00
|
|
|
{pkgs, ...}: {
|
2024-07-24 20:52:32 -04:00
|
|
|
khepri.compositions."hauk" = {
|
|
|
|
networks.proxy_net = {external = true;};
|
2024-02-28 12:45:17 -05:00
|
|
|
|
2024-07-24 20:52:32 -04: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
|
|
|
};
|
|
|
|
}
|