From 84e469897ed85127e62d47b2c63ac6904e546b6a Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sat, 29 Mar 2025 21:10:22 -0400 Subject: [PATCH] deleted uptime_kuma.nix --- systems/jeeves/docker/uptime_kuma.nix | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 systems/jeeves/docker/uptime_kuma.nix diff --git a/systems/jeeves/docker/uptime_kuma.nix b/systems/jeeves/docker/uptime_kuma.nix deleted file mode 100644 index 077433f..0000000 --- a/systems/jeeves/docker/uptime_kuma.nix +++ /dev/null @@ -1,17 +0,0 @@ -let - vars = import ../vars.nix; -in -{ - virtualisation.oci-containers.containers = { - uptime_kuma = { - ports = [ "3001:3001" ]; - image = "louislam/uptime-kuma:1.23.16-debian"; - volumes = [ - "${vars.media_docker_configs}/uptime_kuma:/app/data" - "/var/run/docker.sock:/var/run/docker.sock" - ]; - extraOptions = [ "--network=web" ]; - autoStart = true; - }; - }; -}