From 2d895fe2bd7fbd5cd124a0d68a5c599c553c2e16 Mon Sep 17 00:00:00 2001 From: mr-forust Date: Mon, 17 Nov 2025 21:13:19 +0100 Subject: [PATCH] fix: traefik network for uptime-kuma --- kuma/compose.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/kuma/compose.yaml b/kuma/compose.yaml index 8d57eb1..245cc56 100644 --- a/kuma/compose.yaml +++ b/kuma/compose.yaml @@ -4,9 +4,15 @@ services: restart: unless-stopped volumes: - ./data:/app/data - # ports: + ports: # : - # - "3001:3001 + - "3001:3001" labels: - "traefik.enable=true" + - "traefik.docker.network=traefik-proxy" + networks: + - traefik-proxy +networks: + traefik-proxy: + external: true \ No newline at end of file