mirror of
https://github.com/hassio-addons/addon-tasmoadmin.git
synced 2025-05-04 19:11:26 +00:00
🔨 Fix healthcheck for SSL enabled instances (#274)
Fixes https://github.com/hassio-addons/addon-tasmoadmin/issues/273
This commit is contained in:
parent
056146b25d
commit
2c9fc7b535
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ RUN \
|
||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
|
|
||||||
# Health check
|
# 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
|
# Build arguments
|
||||||
ARG BUILD_ARCH
|
ARG BUILD_ARCH
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue