From 123642622c04f36d4cfae8d37394a766f8a54b63 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 10 Aug 2026 18:45:23 +0200 Subject: [PATCH] fix(service): triliumnext healthcheck and platform --- templates/compose/triliumnext.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/templates/compose/triliumnext.yaml b/templates/compose/triliumnext.yaml index cc71ffadd7..19b6f69492 100644 --- a/templates/compose/triliumnext.yaml +++ b/templates/compose/triliumnext.yaml @@ -8,18 +8,13 @@ services: triliumnext: image: ghcr.io/triliumnext/trilium:stable - platform: linux/amd64 # https://github.com/TriliumNext/Trilium/issues/6390 environment: - SERVICE_URL_TRILIUMNEXT_8080 - TZ=${TZ:-Europe/Berlin} volumes: - triliumnext_data:/home/node/trilium-data healthcheck: - test: - [ - "CMD-SHELL", - "wget --quiet --tries=1 --spider http://127.0.0.1:8080/api/health-check || exit 1", - ] + test: ["CMD", "node", "/usr/src/app/docker_healthcheck.cjs"] interval: 5s timeout: 20s retries: 10