From 8cb1d413f8ac7eff0a96e66cefec57d875abf973 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 31 Aug 2023 12:31:36 +0200 Subject: [PATCH] dsp - fix healthcheck Signed-off-by: Simon L --- Containers/docker-socket-proxy/healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/docker-socket-proxy/healthcheck.sh b/Containers/docker-socket-proxy/healthcheck.sh index 867d9a5e..c65762d4 100644 --- a/Containers/docker-socket-proxy/healthcheck.sh +++ b/Containers/docker-socket-proxy/healthcheck.sh @@ -1,6 +1,6 @@ #!/bin/bash nc -z "$NEXTCLOUD_HOST" 9000 || exit 0 -if [ "$(wget http://127.0.0.1:2375/v1.41/_ping -qO -)" != "OK" ]; then +if ! nc -z localhost 2375; then exit 1 fi