From 0bea878d1216d3b1523b38ad84100f3fd59ec666 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 12 Apr 2021 18:35:32 +0200 Subject: [PATCH] Use /explore instead of non-existing /healthcheck --- CloudronManifest.json | 2 +- start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CloudronManifest.json b/CloudronManifest.json index a96a9e0..a09905d 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,7 +5,7 @@ "description": "file://DESCRIPTION.md", "tagline": "A painless self-hosted Git Service", "version": "1.21.0", - "healthCheckPath": "/healthcheck", + "healthCheckPath": "/explore", "httpPort": 3000, "memoryLimit": 536870912, "addons": { diff --git a/start.sh b/start.sh index bf93713..2c80996 100755 --- a/start.sh +++ b/start.sh @@ -38,7 +38,7 @@ setup_auth() { set -eu # Wait for gitea to finish db setup, before we do any db operations - while ! curl --fail http://localhost:3000/healthcheck; do + while ! curl --fail http://localhost:3000/explore; do echo "==> Waiting for gitea to come up" sleep 1 done