From be299dfe8caba72352bc3cf2c1cb1321b8568783 Mon Sep 17 00:00:00 2001 From: szaimen Date: Thu, 6 Oct 2022 23:22:19 +0200 Subject: [PATCH] add it to mastercontainer as well Signed-off-by: szaimen --- Containers/mastercontainer/healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/mastercontainer/healthcheck.sh b/Containers/mastercontainer/healthcheck.sh index 3a0d0b333bc..c3a5e3fddce 100644 --- a/Containers/mastercontainer/healthcheck.sh +++ b/Containers/mastercontainer/healthcheck.sh @@ -1,5 +1,5 @@ #!/bin/bash if [ -f "/mnt/docker-aio-config/data/configuration.json" ]; then - curl -skfI https://localhost:8080 || exit 1 + nc -z localhost 8080 || exit 1 fi