From 01c9bda3397e5a7d1cb9b220f59b855538a159c4 Mon Sep 17 00:00:00 2001 From: Reviewer Date: Sat, 13 Jun 2026 21:04:27 +0200 Subject: [PATCH] fix(ops): change api healthcheck from curl to wget (curl not in base dotnet-aspnet image) [skip ci] --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 4bbb302..9ca013d 100644 --- a/compose.yaml +++ b/compose.yaml @@ -53,7 +53,7 @@ services: postgres: condition: service_healthy healthcheck: - test: ["CMD-SHELL", "curl -f http://localhost:8080/health || exit 1"] + test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:8080/health || exit 1"] interval: 30s timeout: 10s retries: 3