1
0
Files
syncthing/compose.yml
Kappeh bbe4344c02
Some checks failed
Deploy / Deploy (push) Failing after 10s
Mount music_library_1 as read-only volume for syncing to other devices
2026-01-04 19:35:27 +00:00

26 lines
603 B
YAML

version: '3'
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:rw
- /mnt/music_library_1:/data/music_library_1:ro
networks:
syncthing_network:
name: syncthing_network