From 5fe6adc62aa4058df05a4c6c14db1e979432df94 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Mon, 20 Apr 2026 16:53:00 +0200 Subject: [PATCH] imaginary: revert the change to the healthcheck Signed-off-by: Simon L. --- Containers/imaginary/healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/imaginary/healthcheck.sh b/Containers/imaginary/healthcheck.sh index ed1aa485..46d700fc 100644 --- a/Containers/imaginary/healthcheck.sh +++ b/Containers/imaginary/healthcheck.sh @@ -1,3 +1,3 @@ #!/bin/bash -wget -q -O /dev/null "http://127.0.0.1:${PORT}/health" || exit 1 +nc -z 127.0.0.1 "$PORT" || exit 1