Initial commit: Syncthing config (exact copy from server)

This commit is contained in:
2026-02-27 21:16:01 -06:00
commit 1c9aa98b1d
3 changed files with 92 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: "3.9"
services:
syncthing:
image: syncthing/syncthing:latest
container_name: syncthing
environment:
- TZ=America/Chicago
volumes:
- /home/clint/containers/syncthing/config:/var/syncthing/config
- /home/clint/archive/systems/containers/syncthing:/var/syncthing/data
ports:
- "2000:8384" # Web UI (proxied by Caddy)
- "22000:22000/tcp" # Sync
- "22000:22000/udp" # QUIC / discovery
restart: unless-stopped