Skip to content

Commit 288ec88

Browse files
committed
add example docker-compose
Signed-off-by: Felix Bartels <[email protected]>
1 parent 71916b5 commit 288ec88

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docker-compose.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: '2.1'
2+
services:
3+
trilium:
4+
build:
5+
context: .
6+
image: zadam/trilium
7+
restart: always
8+
environment:
9+
- TRILIUM_DATA_DIR=/data
10+
ports:
11+
- "8080:8080"
12+
volumes:
13+
- trilium:/data
14+
15+
volumes:
16+
trilium:
17+

0 commit comments

Comments
 (0)