fix: web healthcheck uses curl instead of wget (busybox wget fails)

This commit is contained in:
jlightner 2026-03-30 01:24:05 +00:00
parent b49326147f
commit 1b4b803f6b

View file

@ -155,7 +155,7 @@ services:
networks: networks:
- chrysopedia - chrysopedia
healthcheck: 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 interval: 30s
timeout: 5s timeout: 5s
retries: 3 retries: 3