Update healthcheck command in compose.yaml to use wget options for quiet output and redirecting to /dev/null for improved performance.
Some checks failed
CI / backend (push) Has been cancelled
CI / frontend (push) Has been cancelled
CI / compose (push) Has been cancelled

This commit is contained in:
2026-07-19 00:45:22 +03:00
parent ea2078bc78
commit 0970046a70

View File

@@ -47,7 +47,7 @@ services:
expose: expose:
- "8080" - "8080"
healthcheck: healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://127.0.0.1:8080/healthz"] test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://127.0.0.1:8080/healthz"]
interval: 15s interval: 15s
timeout: 5s timeout: 5s
retries: 5 retries: 5