25 lines
748 B
YAML
25 lines
748 B
YAML
# documentation: https://github.com/TriliumNext/Trilium
|
|
# slogan: Build your personal knowledge base with TriliumNext Notes.
|
|
# tags: self-hosted, notes, todo, organize, markdown, wiki
|
|
# logo: svgs/triliumnext.svg
|
|
# port: 8080
|
|
|
|
services:
|
|
triliumnext:
|
|
image: ghcr.io/triliumnext/trilium:stable
|
|
platform: linux/amd64 # https://github.com/TriliumNext/Trilium/issues/6390
|
|
environment:
|
|
- SERVICE_FQDN_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",
|
|
]
|
|
interval: 5s
|
|
timeout: 20s
|
|
retries: 10
|