This commit is contained in:
2026-05-11 22:39:52 +02:00
commit 69aa6dbb33
2 changed files with 24 additions and 0 deletions

22
docker-compose.yaml Normal file
View File

@@ -0,0 +1,22 @@
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
restart: unless-stopped
hostname: "${NODE_NAME}"
ports:
- "${WG_IP}:22000:22000/tcp"
- "${WG_IP}:22000:22000/udp"
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ./config:/config
- ${SYNC_PATH}:/srv/sync
stop_grace_period: 1m
networks:
- proxy_pc
networks:
proxy_pc:
external: true