Synchronize files continuously between two or more computers in real time with a focus on absolute privacy and security. This open-source solution ensures your data remains entirely yours, bypassing central servers to protect against compromises. Every transfer is secured using TLS encryption with perfect forward secrecy, preventing unauthorized access.
Key benefits include:
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
hostname: syncthing # Optional, helps with device identification
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./config:/config
- ./data:/data1
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped# No sensitive environment variables are required for this configuration.
# You can customize the PUID, PGID, and TZ directly in the docker-compose.yml file.Auto-fetched about 23 hours ago
Auto-fetched about 23 hours ago