From 0970046a702b27e7c6264c01e28b644eeeb025af Mon Sep 17 00:00:00 2001 From: lemintare Date: Sun, 19 Jul 2026 00:45:22 +0300 Subject: [PATCH] Update healthcheck command in compose.yaml to use wget options for quiet output and redirecting to /dev/null for improved performance. --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 86fd21b..66f3abe 100644 --- a/compose.yaml +++ b/compose.yaml @@ -47,7 +47,7 @@ services: expose: - "8080" 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 timeout: 5s retries: 5