try curl (retval 0) instead of wget (retval 8) for 404 that is returned

This commit is contained in:
Michael Shaw 2023-01-25 17:35:14 -05:00
parent 25d1577ce4
commit 357f5e8af2

View File

@ -6,7 +6,7 @@ services:
volumes:
- ../../init.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
healthcheck:
test: ["CMD", "wget", "-nv", "-t1", "--spider", "http://localhost:6060"]
test: ["CMD", "curl", "-v", "http://127.0.0.1:6060"]
interval: 1s
timeout: 5s
retries: 30