Primo caricamento

This commit is contained in:
Francesco Picone
2025-12-19 16:25:05 +01:00
commit 7457865d26
4 changed files with 88 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
version: '3.8'
services:
syncthing:
image: syncthing/syncthing:latest
container_name: syncthing
hostname: syncthing
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- ${CONFIG_PATH}:/var/syncthing/config
- ${DATA_PATH}:/var/syncthing/data
ports:
- ${WEB_UI_PORT}:8384 # Web UI
- ${SYNC_PORT}:22000/tcp # TCP file transfers
- ${SYNC_PORT}:22000/udp # QUIC file transfers
- ${DISCOVERY_PORT}:21027/udp # Local discovery
restart: unless-stopped
networks:
- syncthing_network
networks:
syncthing_network:
driver: bridge