diff --git a/joplin/CHANGELOG.md b/joplin/CHANGELOG.md index ad9622f56..083d002c9 100644 --- a/joplin/CHANGELOG.md +++ b/joplin/CHANGELOG.md @@ -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) diff --git a/joplin/Dockerfile b/joplin/Dockerfile index 6ed5624be..f7185790e 100644 --- a/joplin/Dockerfile +++ b/joplin/Dockerfile @@ -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 diff --git a/joplin/config.json b/joplin/config.json index 0ac89c595..da1ccc9a3 100644 --- a/joplin/config.json +++ b/joplin/config.json @@ -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]" } \ No newline at end of file