Added Docker Support

This commit is contained in:
2026-04-08 13:24:25 +01:00
parent af07ca1174
commit bea99b868c
5 changed files with 97 additions and 0 deletions

17
compose.yaml Normal file
View File

@@ -0,0 +1,17 @@
services:
sync-server:
container_name: obsidian-sync-server
build:
context: .
dockerfile: apps/sync-server/Dockerfile
environment:
PORT: 8787
SYNC_DATA_DIR: /app/data
ports:
- "${OBSIDIAN_SYNC_PORT:-8787}:8787"
volumes:
- obsidian-sync-data:/app/data
restart: unless-stopped
volumes:
obsidian-sync-data: