refactor(build-deploy-review): align healthcheck with container script in docker-compose

This commit is contained in:
rcourtman
2026-02-12 09:34:32 +00:00
parent 6cffd17da6
commit d7676f62ff

View File

@@ -18,7 +18,7 @@ services:
environment:
- TZ=${TZ:-UTC}
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:7655/api/health"]
test: ["CMD-SHELL", "[ -x /docker-healthcheck.sh ] && /docker-healthcheck.sh || wget --quiet --tries=1 --spider http://localhost:7655/api/health"]
interval: 30s
timeout: 10s
retries: 3