From 1b4b803f6b7c797dd0beb5d3a4b7f850dc6747c3 Mon Sep 17 00:00:00 2001 From: jlightner Date: Mon, 30 Mar 2026 01:24:05 +0000 Subject: [PATCH] fix: web healthcheck uses curl instead of wget (busybox wget fails) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 133c555..2ff77d9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -155,7 +155,7 @@ services: networks: - chrysopedia healthcheck: - test: ["CMD-SHELL", "wget -qO- http://localhost:80/ || exit 1"] + test: ["CMD-SHELL", "curl -sf http://127.0.0.1:80/ || exit 1"] interval: 30s timeout: 5s retries: 3