nix-dotfiles/systems/jeeves/docker/uptime_kuma.nix

17 lines
370 B
Nix
Raw Normal View History

2024-07-05 10:49:52 -04:00
let
vars = import ../vars.nix;
in
{
virtualisation.oci-containers.containers = {
uptime_kuma = {
image = "louislam/uptime-kuma:latest";
2024-07-05 11:56:42 -04:00
volumes = [
"${vars.media_docker_configs}/uptime_kuma:/app/data"
"/var/run/docker.sock:/var/run/docker.sock"
];
2024-07-05 10:49:52 -04:00
extraOptions = [ "--network=web" ];
autoStart = true;
};
};
}