Update healthcheck URLs to use 127.0.0.1 instead of localhost
This commit is contained in:
parent
ca5f52c48c
commit
05b5a6fddf
@ -95,7 +95,7 @@ services:
|
||||
expose:
|
||||
- "${APP_PORT:-8000}"
|
||||
healthcheck:
|
||||
test: curl --fail http://localhost:80/api/health || exit 1
|
||||
test: curl --fail http://127.0.0.1:80/api/health || exit 1
|
||||
interval: 5s
|
||||
retries: 10
|
||||
timeout: 2s
|
||||
@ -142,7 +142,7 @@ services:
|
||||
SOKETI_DEFAULT_APP_KEY: "${PUSHER_APP_KEY}"
|
||||
SOKETI_DEFAULT_APP_SECRET: "${PUSHER_APP_SECRET}"
|
||||
healthcheck:
|
||||
test: wget -qO- http://localhost:6001/ready || exit 1
|
||||
test: wget -qO- http://127.0.0.1:6001/ready || exit 1
|
||||
interval: 5s
|
||||
retries: 10
|
||||
timeout: 2s
|
||||
|
Loading…
Reference in New Issue
Block a user