2024-12-24 06:00:35 -08:00
|
|
|
services:
|
|
|
|
syncthing:
|
2025-07-05 15:40:30 -07:00
|
|
|
image: syncthing/syncthing:1.30.0
|
2024-12-24 06:00:35 -08:00
|
|
|
container_name: syncthing
|
|
|
|
hostname: white-syncthing
|
|
|
|
environment:
|
|
|
|
- PUID=1873
|
|
|
|
- PGID=1873
|
|
|
|
volumes:
|
|
|
|
- /opt/data/syncthing/data:/var/syncthing
|
|
|
|
ports:
|
|
|
|
- 8384:8384 # Web UI
|
|
|
|
- 22000:22000/tcp # TCP file transfers
|
|
|
|
- 22000:22000/udp # QUIC file transfers
|
|
|
|
- 21027:21027/udp # Receive local discovery broadcasts
|
|
|
|
restart: unless-stopped
|