From 018ef6f665179da2034e9c9c0f96cf1b2d8ef20e Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Sun, 3 Nov 2024 02:20:38 +0100 Subject: [PATCH] fix: typo in frontend healthcheck --- templates/compose/erpnext.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/compose/erpnext.yaml b/templates/compose/erpnext.yaml index 246b37117..884d7dbff 100644 --- a/templates/compose/erpnext.yaml +++ b/templates/compose/erpnext.yaml @@ -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