17 lines
369 B
Nix
Raw Normal View History

2024-07-05 13:24:41 -04:00
let
vars = import ../vars.nix;
in
{
virtualisation.oci-containers.containers = {
uptime_kuma = {
image = "louislam/uptime-kuma:latest";
volumes = [
2024-07-05 14:40:02 -04:00
"${vars.main_docker_configs}/uptime_kuma:/app/data"
2024-07-05 13:24:41 -04:00
"/var/run/docker.sock:/var/run/docker.sock"
];
extraOptions = [ "--network=web" ];
autoStart = true;
};
};
}