2024-09-18 10:14:40 -03:00
|
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
syncthing:
|
2024-09-19 18:29:50 -03:00
|
|
|
image: syncthing/syncthing:latest
|
2024-09-18 10:14:40 -03:00
|
|
|
container_name: syncthing
|
|
|
|
hostname: syncthing
|
|
|
|
environment:
|
|
|
|
- TZ=America/Moncton
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
2024-09-18 18:44:01 -03:00
|
|
|
- STGUIADDRESS=0.0.0.0:8384
|
2024-09-18 10:14:40 -03:00
|
|
|
volumes:
|
|
|
|
- /docker/appdata/syncthing/Sync:/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
|