fix: web healthcheck uses curl instead of wget (busybox wget fails)
This commit is contained in:
parent
b49326147f
commit
1b4b803f6b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue