From 2c9fc7b535178c7ebc2c19f2a3fca081f743347f Mon Sep 17 00:00:00 2001 From: Paul Sinclair <24625998+sinclairpaul@users.noreply.github.com> Date: Thu, 29 Dec 2022 04:57:35 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Fix=20healthcheck=20for=20SSL=20?= =?UTF-8?q?enabled=20instances=20(#274)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://github.com/hassio-addons/addon-tasmoadmin/issues/273 --- tasmoadmin/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmoadmin/Dockerfile b/tasmoadmin/Dockerfile index 1c8b3ae..3c9bdf1 100755 --- a/tasmoadmin/Dockerfile +++ b/tasmoadmin/Dockerfile @@ -57,7 +57,7 @@ RUN \ COPY rootfs / # Health check -HEALTHCHECK CMD curl --fail http://127.0.0.1:9541 || exit 1 +HEALTHCHECK CMD [[ "curl --fail http://127.0.0.1:9541" ] || [ "curl --fail --insecure https://127.0.0.1:9541" ]] || exit 1 # Build arguments ARG BUILD_ARCH