From dd053182f9f2cf737e106ff671a5c7f014be8516 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 15 Jun 2023 16:12:36 +0200 Subject: [PATCH] ffix nextcloud health check Signed-off-by: Simon L --- Containers/nextcloud/healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/nextcloud/healthcheck.sh b/Containers/nextcloud/healthcheck.sh index df87360c..97d6a689 100644 --- a/Containers/nextcloud/healthcheck.sh +++ b/Containers/nextcloud/healthcheck.sh @@ -2,6 +2,6 @@ nc -z "$POSTGRES_HOST" 5432 || exit 0 -if ! nc -z localhost 9000 || ! nc -z localhost 7867; then +if ! nc -z localhost 9000; then exit 1 fi