Update docker-compose.yml to use curl vice wget (#422)
The health check is failing with wget not included in the base image, using curl fixes this issue
This commit is contained in:
parent
c40fb3a1f2
commit
4cdaaa5d5c
@ -22,6 +22,6 @@ services:
|
||||
restart: always
|
||||
stop_grace_period: 1m
|
||||
healthcheck:
|
||||
test: 'wget -O /dev/null localhost:3000/api/healthz || exit 1'
|
||||
test: 'curl -o /dev/null localhost:3000/api/healthz || exit 1'
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
|
Loading…
x
Reference in New Issue
Block a user