mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
Change healthcheck logic https://github.com/alexbelgium/hassio-addons/issues/811
This commit is contained in:
@@ -1,27 +1,35 @@
|
||||
- Fix : healthcheck
|
||||
|
||||
## 2.10.11 (18-03-2023)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
|
||||
## 2.10.10 (11-03-2023)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
- Implemented healthcheck
|
||||
|
||||
## 2.10.9 (11-02-2023)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
|
||||
## 2.10.5 (31-12-2022)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
|
||||
## 2.10.4 (25-12-2022)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
- Breaking change: MAILER_SECURE replaced by MAILER_SECURITY
|
||||
- WARNING : update to supervisor 2022.11 before installing
|
||||
- Add access to systime
|
||||
|
||||
## 2.9.7 (08-11-2022)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
|
||||
## 2.9.5 (13-10-2022)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
- Add codenotary sign
|
||||
- Data location can be set either in /config, /data or /share
|
||||
@@ -29,6 +37,7 @@
|
||||
- Default sqlite storage : /config/addons_config/joplin
|
||||
|
||||
## 2.7.4 (12-02-2022)
|
||||
|
||||
- Update to latest version from etechonomy/joplin-server
|
||||
|
||||
## 2.6.10 (20-12-2021)
|
||||
|
||||
@@ -114,11 +114,11 @@ LABEL \
|
||||
# 6 Healthcheck #
|
||||
#################
|
||||
|
||||
ENV HEALTH_PORT="22300" \
|
||||
HEALTH_URL="/health"
|
||||
ENV HEALTH_PORT="" \
|
||||
HEALTH_URL=""
|
||||
HEALTHCHECK \
|
||||
--interval=5s \
|
||||
--retries=5 \
|
||||
--start-period=30s \
|
||||
--timeout=25s \
|
||||
CMD [[ $(curl -s "http://127.0.0.1:${HEALTH_PORT}${HEALTH_URL}") == *"Invalid"* ]] || exit 1
|
||||
CMD ps aux | grep "joplin" | grep -v "grep" || exit 1
|
||||
|
||||
@@ -96,6 +96,6 @@
|
||||
},
|
||||
"slug": "joplin",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "2.10.11",
|
||||
"version": "2.10.11-2",
|
||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:22300]"
|
||||
}
|
||||
Reference in New Issue
Block a user