22 lines
531 B
YAML
22 lines
531 B
YAML
services:
|
|
syncthing:
|
|
image: 'syncthing/syncthing:2.0.12'
|
|
container_name: syncthing
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=2010 # syncthing
|
|
- PGID=2010 # syncthing
|
|
networks:
|
|
- syncthing_network
|
|
ports:
|
|
- 8384:8384 # Web UI
|
|
- 22000:22000/tcp # TCP file transfers
|
|
- 22000:22000/udp # QUIC file transfers
|
|
- 21027:21027/udp # Receive local discovery broadcasts
|
|
volumes:
|
|
- ./data:/var/syncthing
|
|
|
|
networks:
|
|
syncthing_network:
|
|
name: syncthing_network
|