mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-04-13 19:10:35 +02:00
Healthcheck
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
- WARNING : update to supervisor 2022.11 before installing
|
- WARNING : update to supervisor 2022.11 before installing
|
||||||
- Add codenotary sign
|
- Add codenotary sign
|
||||||
- New standardized logic for Dockerfile build and packages installation
|
- New standardized logic for Dockerfile build and packages installation
|
||||||
|
|||||||
@@ -100,3 +100,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="7022"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 0.9.3 (13-12-2022)
|
## 0.9.3 (13-12-2022)
|
||||||
- Update to latest version from ckulka/baikal-docker
|
- Update to latest version from ckulka/baikal-docker
|
||||||
|
|||||||
@@ -105,3 +105,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="80"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 1.2.0 (04-03-2023)
|
## 1.2.0 (04-03-2023)
|
||||||
- Update to latest version from linuxserver/docker-bazarr
|
- Update to latest version from linuxserver/docker-bazarr
|
||||||
|
|||||||
@@ -121,3 +121,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="6767"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 0.0.96 (04-03-2023)
|
## 0.0.96 (04-03-2023)
|
||||||
- Update to latest version from chrisleekr/binance-trading-bot
|
- Update to latest version from chrisleekr/binance-trading-bot
|
||||||
|
|||||||
@@ -122,3 +122,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="80"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 1.27.0 (25-12-2022)
|
## 1.27.0 (25-12-2022)
|
||||||
- Update to latest version from dani-garcia/bitwarden_rs
|
- Update to latest version from dani-garcia/bitwarden_rs
|
||||||
|
|||||||
@@ -115,11 +115,15 @@ LABEL \
|
|||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
ARG WEBUI_PORT="80"
|
ARG WEBUI_PORT="80"
|
||||||
ARG URL=""
|
ARG URL=""
|
||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || curl --fail http://127.0.0.1:443 || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## v2201.1.0-ls83 (04-03-2023)
|
## v2201.1.0-ls83 (04-03-2023)
|
||||||
- Update to latest version from linuxserver/docker-booksonic-air
|
- Update to latest version from linuxserver/docker-booksonic-air
|
||||||
|
|||||||
@@ -132,3 +132,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="4040"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 0.0.0 (19-02-2023)
|
## 0.0.0 (19-02-2023)
|
||||||
- Update to latest version from browserless/chrome
|
- Update to latest version from browserless/chrome
|
||||||
|
|||||||
@@ -100,3 +100,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="3000"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## v6.13.0-ls204 (04-03-2023)
|
## v6.13.0-ls204 (04-03-2023)
|
||||||
- Update to latest version from linuxserver/docker-calibre
|
- Update to latest version from linuxserver/docker-calibre
|
||||||
|
|||||||
@@ -132,3 +132,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8080"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 0.6.19-ls197 (04-03-2023)
|
## 0.6.19-ls197 (04-03-2023)
|
||||||
- Update to latest version from linuxserver/docker-calibre-web
|
- Update to latest version from linuxserver/docker-calibre-web
|
||||||
|
|||||||
@@ -135,3 +135,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8083"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 16.13.1 (04-02-2023)
|
## 16.13.1 (04-02-2023)
|
||||||
- Update to latest version from coderaiser/cloudcmd
|
- Update to latest version from coderaiser/cloudcmd
|
||||||
|
|||||||
@@ -101,3 +101,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8000"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 4.10.0 (19-02-2023)
|
## 4.10.0 (19-02-2023)
|
||||||
- Update to latest version from linuxserver/docker-code-server
|
- Update to latest version from linuxserver/docker-code-server
|
||||||
|
|||||||
@@ -127,3 +127,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8443"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -118,6 +118,6 @@ ARG URL=""
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -130,6 +130,6 @@ ARG URL=""
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
- Ingress addition
|
- Ingress addition
|
||||||
|
|
||||||
## 0.8.13 (22-01-2023)
|
## 0.8.13 (22-01-2023)
|
||||||
|
|||||||
@@ -100,3 +100,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="5000"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 0.8.14b3 (11-02-2023)
|
## 0.8.14b3 (11-02-2023)
|
||||||
- Update to latest version from m4dm4rtig4n/myelectricaldata
|
- Update to latest version from m4dm4rtig4n/myelectricaldata
|
||||||
|
|||||||
@@ -100,3 +100,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="5000"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
- Add NTFS support
|
- Add NTFS support
|
||||||
- Disable external port by default
|
- Disable external port by default
|
||||||
- WARNING : update to supervisor 2022.11 before installing
|
- WARNING : update to supervisor 2022.11 before installing
|
||||||
|
|||||||
@@ -102,3 +102,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8080"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -120,6 +120,6 @@ ARG URL="/health"
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -116,6 +116,6 @@ ARG URL="/health"
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -110,6 +110,6 @@ ARG URL="/health"
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 3.0.2 (14-01-2023)
|
## 3.0.2 (14-01-2023)
|
||||||
- Update to latest version from FlareSolverr/FlareSolverr
|
- Update to latest version from FlareSolverr/FlareSolverr
|
||||||
|
|||||||
@@ -102,3 +102,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8191"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 3.5.29 (04-03-2023)
|
## 3.5.29 (04-03-2023)
|
||||||
- Update to latest version from wiserain/flexget
|
- Update to latest version from wiserain/flexget
|
||||||
|
|||||||
@@ -137,3 +137,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="5050"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
## 1.18.5 (23-02-2023)
|
## 1.18.5 (23-02-2023)
|
||||||
- Update to latest version from go-gitea/gitea
|
- Update to latest version from go-gitea/gitea
|
||||||
|
|
||||||
|
|||||||
@@ -102,3 +102,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="3000"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 1.7.39.4 (25-02-2023)
|
## 1.7.39.4 (25-02-2023)
|
||||||
- Update to latest version from linuxserver/docker-grav
|
- Update to latest version from linuxserver/docker-grav
|
||||||
|
|||||||
@@ -123,3 +123,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="80"
|
||||||
|
ARG URL="/health"
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -15,8 +15,8 @@
|
|||||||
],
|
],
|
||||||
"name": "Grav web server",
|
"name": "Grav web server",
|
||||||
"options": {
|
"options": {
|
||||||
"PGID": 0,
|
"PGID": 1000,
|
||||||
"PUID": 0
|
"PUID": 1000
|
||||||
},
|
},
|
||||||
"ports": {
|
"ports": {
|
||||||
"80/tcp": 9191
|
"80/tcp": 9191
|
||||||
@@ -33,4 +33,4 @@
|
|||||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||||
"version": "1.7.39.4",
|
"version": "1.7.39.4",
|
||||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]"
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]"
|
||||||
}
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 1.4.3 (04-03-2023)
|
## 1.4.3 (04-03-2023)
|
||||||
- Update to latest version from MaxWaldorf/guacamole
|
- Update to latest version from MaxWaldorf/guacamole
|
||||||
|
|||||||
@@ -133,3 +133,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8080"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 1.50.1 (04-03-2023)
|
## 1.50.1 (04-03-2023)
|
||||||
- Update to latest version from imagegenius/docker-immich
|
- Update to latest version from imagegenius/docker-immich
|
||||||
|
|||||||
@@ -144,3 +144,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8080"
|
||||||
|
ARG URL="/api/server-info/ping"
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 0.20.3444 (04-03-2023)
|
## 0.20.3444 (04-03-2023)
|
||||||
- Update to latest version from linuxserver/docker-jackett
|
- Update to latest version from linuxserver/docker-jackett
|
||||||
|
|||||||
@@ -123,3 +123,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="9117"
|
||||||
|
ARG URL="/UI/Dashboard"
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -140,10 +140,10 @@ LABEL \
|
|||||||
#################
|
#################
|
||||||
|
|
||||||
ARG WEBUI_PORT="8096"
|
ARG WEBUI_PORT="8096"
|
||||||
ARG URL=""
|
ARG URL="/health"
|
||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -122,6 +122,6 @@ ARG URL="/joal/ui"
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 2.10.9 (11-02-2023)
|
## 2.10.9 (11-02-2023)
|
||||||
- Update to latest version from etechonomy/joplin-server
|
- Update to latest version from etechonomy/joplin-server
|
||||||
|
|||||||
@@ -109,3 +109,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="22300"
|
||||||
|
ARG URL="/health"
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD [[ $(curl -s http://127.0.0.1:"$WEBUI_PORT$URL") == *"Invalid"* ]] || exit 1
|
||||||
|
|||||||
@@ -129,3 +129,12 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8686"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || curl --fail http://127.0.0.1:443 || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## v1.0.0-beta-1 (07-01-2023)
|
## v1.0.0-beta-1 (07-01-2023)
|
||||||
- Update to latest version from hay-kot/mealie
|
- Update to latest version from hay-kot/mealie
|
||||||
|
|||||||
@@ -113,3 +113,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT=""
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD python $MEALIE_HOME/mealie/scripts/healthcheck.py || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
|
|
||||||
## 0.7.0 (10-12-2022)
|
## 0.7.0 (10-12-2022)
|
||||||
- Update to latest version from linuxserver/docker-mylar3
|
- Update to latest version from linuxserver/docker-mylar3
|
||||||
|
|||||||
@@ -125,3 +125,16 @@ LABEL \
|
|||||||
org.opencontainers.image.created=${BUILD_DATE} \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG WEBUI_PORT="8090"
|
||||||
|
ARG URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=60s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
- Redirect crond errors to addon logs
|
- Redirect crond errors to addon logs
|
||||||
- Improve elasticsearch integration
|
- Improve elasticsearch integration
|
||||||
- Links nginx & php logs with addon logs
|
- Links nginx & php logs with addon logs
|
||||||
|
|||||||
@@ -161,11 +161,15 @@ LABEL \
|
|||||||
org.opencontainers.image.revision=${BUILD_REF} \
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
org.opencontainers.image.version=${BUILD_VERSION}
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
ARG WEBUI_PORT="80"
|
ARG WEBUI_PORT="80"
|
||||||
ARG URL=""
|
ARG URL=""
|
||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || curl --fail http://127.0.0.1:443 || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || curl --fail http://127.0.0.1:443 || exit 1
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented healthcheck
|
||||||
- Add message if ingress disabled
|
- Add message if ingress disabled
|
||||||
|
|
||||||
## Preview (27-01-2023)
|
## Preview (27-01-2023)
|
||||||
|
|||||||
@@ -119,11 +119,15 @@ LABEL \
|
|||||||
org.opencontainers.image.version=${BUILD_VERSION} \
|
org.opencontainers.image.version=${BUILD_VERSION} \
|
||||||
traefik.http.middlewares.test-compress.compress=false
|
traefik.http.middlewares.test-compress.compress=false
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
ARG WEBUI_PORT=""
|
ARG WEBUI_PORT=""
|
||||||
ARG URL=""
|
ARG URL=""
|
||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD photoprism status || exit 1
|
CMD photoprism status || exit 1
|
||||||
|
|||||||
@@ -135,6 +135,6 @@ ARG URL=""
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -110,6 +110,6 @@ ARG URL=""
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -110,6 +110,6 @@ ARG URL=""
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
@@ -146,6 +146,6 @@ ARG URL=""
|
|||||||
HEALTHCHECK \
|
HEALTHCHECK \
|
||||||
--interval=5s \
|
--interval=5s \
|
||||||
--retries=5 \
|
--retries=5 \
|
||||||
--start-period=30s \
|
--start-period=60s \
|
||||||
--timeout=25s \
|
--timeout=25s \
|
||||||
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" || exit 1
|
CMD curl --fail http://127.0.0.1:"$WEBUI_PORT$URL" &>/dev/null || exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user