trilium: add
This commit is contained in:
parent
497492308e
commit
ee77496909
4
.env
4
.env
|
@ -23,4 +23,6 @@ AUDIOBOOKSHELF_EXTERNAL_PORT=13378
|
||||||
TIMETRACKER_EXTERNAL_PORT=8003
|
TIMETRACKER_EXTERNAL_PORT=8003
|
||||||
TIMETRACKER_INTERNAL_PORT=8000
|
TIMETRACKER_INTERNAL_PORT=8000
|
||||||
MEALIE_EXTERNAL_PORT=9925
|
MEALIE_EXTERNAL_PORT=9925
|
||||||
MEALIE_INTERNAL_PORT=80
|
MEALIE_INTERNAL_PORT=80
|
||||||
|
TRILIUM_EXTERNAL_PORT=8080
|
||||||
|
TRILIUM_INTERNAL_PORT=8080
|
|
@ -0,0 +1,10 @@
|
||||||
|
services:
|
||||||
|
trilium:
|
||||||
|
image: zadam/trilium
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- TRILIUM_DATA_DIR=/home/node/trilium-data
|
||||||
|
ports:
|
||||||
|
- "${TRILIUM_EXTERNAL_PORT}:${TRILIUM_INTERNAL_PORT}"
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_STORAGE_PATH}/trilium:/home/node/trilium-data
|
Loading…
Reference in New Issue