fix: replace curl with wget for healthcheck commands in Docker configurations

This commit is contained in:
GitHub Actions
2026-03-13 14:13:37 +00:00
parent 88a9cdb0ff
commit 4b896c2e3c
6 changed files with 16 additions and 15 deletions

View File

@@ -52,7 +52,7 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro # For container discovery in tests
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:8080/api/v1/health || exit 1"]
test: ["CMD-SHELL", "wget -qO /dev/null http://localhost:8080/api/v1/health || exit 1"]
interval: 5s
timeout: 5s
retries: 10