1
0

Add syncthing container
All checks were successful
Deploy / Deploy (push) Successful in 11s

This commit is contained in:
2026-01-02 20:09:44 +00:00
parent f758b72fdb
commit 91cd4ed882
2 changed files with 56 additions and 0 deletions

23
compose.yml Normal file
View File

@@ -0,0 +1,23 @@
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
networks:
syncthing_network:
name: syncthing_network