From c7a6161188d0036545b1c6e694cbeefc73771c3e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 14 Feb 2021 15:18:52 +0100 Subject: [PATCH] Health check on the right port --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index d0423d2..20b516d 100644 --- a/compose.yml +++ b/compose.yml @@ -17,7 +17,7 @@ services: - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" healthcheck: - test: ["CMD", "curl", "-f", "http://localhost"] + test: ["CMD", "curl", "-f", "http://localhost:${PORT}"] interval: 30s timeout: 10s retries: 10