This commit is contained in:
Alexandre
2023-05-02 11:57:39 +02:00
parent 3e8a1c8394
commit dfae8b02a4
3 changed files with 13 additions and 4 deletions

View File

@@ -1,27 +1,35 @@
- Fix : healthcheck
## 2.10.11 (18-03-2023) ## 2.10.11 (18-03-2023)
- Update to latest version from etechonomy/joplin-server - Update to latest version from etechonomy/joplin-server
## 2.10.10 (11-03-2023) ## 2.10.10 (11-03-2023)
- Update to latest version from etechonomy/joplin-server - Update to latest version from etechonomy/joplin-server
- Implemented healthcheck - 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
## 2.10.5 (31-12-2022) ## 2.10.5 (31-12-2022)
- Update to latest version from etechonomy/joplin-server - Update to latest version from etechonomy/joplin-server
## 2.10.4 (25-12-2022) ## 2.10.4 (25-12-2022)
- Update to latest version from etechonomy/joplin-server - Update to latest version from etechonomy/joplin-server
- Breaking change: MAILER_SECURE replaced by MAILER_SECURITY - Breaking change: MAILER_SECURE replaced by MAILER_SECURITY
- WARNING : update to supervisor 2022.11 before installing - WARNING : update to supervisor 2022.11 before installing
- Add access to systime - Add access to systime
## 2.9.7 (08-11-2022) ## 2.9.7 (08-11-2022)
- Update to latest version from etechonomy/joplin-server - Update to latest version from etechonomy/joplin-server
## 2.9.5 (13-10-2022) ## 2.9.5 (13-10-2022)
- Update to latest version from etechonomy/joplin-server - Update to latest version from etechonomy/joplin-server
- Add codenotary sign - Add codenotary sign
- Data location can be set either in /config, /data or /share - Data location can be set either in /config, /data or /share
@@ -29,6 +37,7 @@
- Default sqlite storage : /config/addons_config/joplin - Default sqlite storage : /config/addons_config/joplin
## 2.7.4 (12-02-2022) ## 2.7.4 (12-02-2022)
- Update to latest version from etechonomy/joplin-server - Update to latest version from etechonomy/joplin-server
## 2.6.10 (20-12-2021) ## 2.6.10 (20-12-2021)

View File

@@ -114,11 +114,11 @@ LABEL \
# 6 Healthcheck # # 6 Healthcheck #
################# #################
ENV HEALTH_PORT="22300" \ ENV HEALTH_PORT="" \
HEALTH_URL="/health" HEALTH_URL=""
HEALTHCHECK \ HEALTHCHECK \
--interval=5s \ --interval=5s \
--retries=5 \ --retries=5 \
--start-period=30s \ --start-period=30s \
--timeout=25s \ --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

View File

@@ -96,6 +96,6 @@
}, },
"slug": "joplin", "slug": "joplin",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"version": "2.10.11", "version": "2.10.11-2",
"webui": "[PROTO:ssl]://[HOST]:[PORT:22300]" "webui": "[PROTO:ssl]://[HOST]:[PORT:22300]"
} }