From 96faa55289a7c1d92c300e8ea602a33acb20b906 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Tue, 2 Jul 2024 13:54:04 -0400 Subject: [PATCH] Add db volume --- compose.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 75978e2..97da4af 100644 --- a/compose.yml +++ b/compose.yml @@ -6,6 +6,7 @@ services: image: louislam/uptime-kuma:1.23.11-alpine volumes: - data:/app/data + - db:/app/db networks: - proxy deploy: @@ -24,7 +25,7 @@ services: #- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - "coop-cloud.${STACK_NAME}.version=0.5.1+1.23.11-alpine" healthcheck: - test: 'curl -L localhost:3001' + test: "wget -nv -t1 --spider 'http://localhost:3001/' || exit 1" interval: 30s timeout: 10s retries: 5 @@ -32,6 +33,7 @@ services: volumes: data: + db: networks: proxy: