From a1e5dd05867f0c0ed13f8996bd138aeb7f9dd047 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Fri, 5 Jul 2024 11:56:42 -0400 Subject: [PATCH] added docker sock --- systems/jeeves/docker/uptime_kuma.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/jeeves/docker/uptime_kuma.nix b/systems/jeeves/docker/uptime_kuma.nix index c7c31ad..bf5e39f 100644 --- a/systems/jeeves/docker/uptime_kuma.nix +++ b/systems/jeeves/docker/uptime_kuma.nix @@ -6,7 +6,10 @@ in uptime_kuma = { image = "louislam/uptime-kuma:latest"; ports = [ "3001:3001" ]; - volumes = [ "${vars.media_docker_configs}/uptime_kuma:/app/data" ]; + volumes = [ + "${vars.media_docker_configs}/uptime_kuma:/app/data" + "/var/run/docker.sock:/var/run/docker.sock" + ]; extraOptions = [ "--network=web" ]; autoStart = true; };