From e845e28af08ca27cee801807d2ec6b50d5e3a8a1 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Sun, 11 Jul 2021 15:39:12 +0200 Subject: [PATCH] Fix healthcheck --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index af47847..5295771 100644 --- a/compose.yml +++ b/compose.yml @@ -23,7 +23,7 @@ services: #- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true" #- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" healthcheck: - test: ["CMD", "wget", "--tries=1", "http://localhost:5000"] + test: ["CMD", "wget", "--tries=1", "http://localhost:5000", "-O", "/dev/null"] interval: 30s timeout: 10s retries: 10