adding uptime-kuma to jeevesjr

This commit is contained in:
Richie Cahill
2024-07-05 13:24:41 -04:00
parent 9b9a0f2a73
commit 3b77165ea2
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,17 @@
let
vars = import ../vars.nix;
in
{
virtualisation.oci-containers.containers = {
uptime_kuma = {
image = "louislam/uptime-kuma:latest";
ports = [ "3001:3001" ];
volumes = [
"${vars.media_docker_configs}/uptime_kuma:/app/data"
"/var/run/docker.sock:/var/run/docker.sock"
];
extraOptions = [ "--network=web" ];
autoStart = true;
};
};
}