fix: typo in frontend healthcheck

This commit is contained in:
barredterra 2024-11-03 02:20:38 +01:00
parent 1d65e7dfbd
commit 018ef6f665

View file

@ -119,7 +119,7 @@ services:
- nginx-entrypoint.sh
healthcheck:
test: |
curl --fail -H "Host: $$FRAPPE_SITE_NAME_HEADER" http://localhost:8080/api/method/ping' | jq '.message == "pong"' | grep true || exit 1
curl --fail -H "Host: $$FRAPPE_SITE_NAME_HEADER" http://localhost:8080/api/method/ping | jq '.message == "pong"' | grep true || exit 1
environment:
BACKEND: backend:8000
SOCKETIO: websocket:9000