inital version
This commit is contained in:
31
docker-compose.yml
Normal file
31
docker-compose.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
---
|
||||
services:
|
||||
trilium:
|
||||
image: zadam/trilium
|
||||
container_name: ${NAME:-trilium}
|
||||
hostname: ${NAME:-trilium}
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
- ${BASEDIR:-.}/files/:/home/node/trilium-data
|
||||
networks:
|
||||
- backend
|
||||
ports:
|
||||
- "8080:8080"
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
deploy:
|
||||
replicas: 1
|
||||
placement:
|
||||
max_replicas_per_node: 1
|
||||
update_config:
|
||||
parallelism: 1
|
||||
delay: 10s
|
||||
environment:
|
||||
TZ: Europe/Berlin
|
||||
|
||||
networks:
|
||||
backend:
|
||||
name: ${INTRANET:-backend}
|
||||
external: true
|
||||
Reference in New Issue
Block a user