fix(ops): change api healthcheck from curl to wget (curl not in base dotnet-aspnet image) [skip ci]

This commit is contained in:
2026-06-13 21:04:27 +02:00
parent 1b11793dad
commit 01c9bda339
+1 -1
View File
@@ -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