From 041b14cc0d87a0c6e3809279ee908b40b435115d Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Fri, 8 Nov 2024 19:07:32 +0000 Subject: [PATCH] fix EW health check --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 1c0816e..c726977 100644 --- a/compose.yml +++ b/compose.yml @@ -241,7 +241,7 @@ services: # ports: # - 8080:80 healthcheck: - test: ["CMD-SHELL", "curl -fSs http://localhost:8080/version || exit 1"] + test: ["CMD-SHELL", "wget -q -O /dev/null http://localhost:80/version || exit 1"] start_period: "5s" interval: "15s" timeout: "5s"