This continuous file synchronization program securely syncs your data across two or more computers in real time. Your data remains entirely yours, protected from prying eyes without relying on third-party cloud providers or central servers. It operates on an open protocol and is fully open-source, ensuring transparency and trust.
Key Benefits:
services:
syncthing:
image: syncthing/syncthing
container_name: syncthing
hostname: my-syncthing
environment:
- PUID=1000
- PGID=1000
volumes:
- ./data:/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# No sensitive environment variables are required for the default configuration.
# If you add secrets (like STGUIAPIKEY) to the compose file using ${VAR} syntax, define them here.Auto-fetched about 23 hours ago
Auto-fetched about 23 hours ago