minilab/collections/ansible_collections/adhdgirl/minilab/roles/syncthing/files/docker-compose.yaml
2026-06-09 14:25:56 -04:00

20 lines
No EOL
487 B
YAML

---
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
hostname: syncthing #optional
environment:
- PUID=1000
- PGID=10000
- TZ=America/New_York
volumes:
- /opt/syncthing/config:/config
- /opt/syncthing/data1:/data1
- /mnt/storage/docker/syncthing/data2:/data2
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped