From 98f98b55d500330cf14ff339cc9ddb220e6ba8a8 Mon Sep 17 00:00:00 2001 From: Reviewer Date: Sat, 13 Jun 2026 21:03:41 +0200 Subject: [PATCH] fix(ops): change web healthcheck from wget to curl (wget IPv6 causes false unhealthy on nginx-alpine) [skip ci] --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 7b94699..4bbb302 100644 --- a/compose.yaml +++ b/compose.yaml @@ -89,7 +89,7 @@ services: - "127.0.0.1:18880:80" depends_on: [api] healthcheck: - test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1"] + test: ["CMD-SHELL", "curl -f http://localhost:80/ || exit 1"] interval: 30s timeout: 10s retries: 3