Add syncthing compose

This commit is contained in:
Sparky
2025-10-07 17:09:16 +01:00
parent bb73643343
commit 118ffc3670

17
syncthing-compose.yml Executable file
View File

@@ -0,0 +1,17 @@
services:
syncthing:
image: syncthing/syncthing:1.29
container_name: syncthing
hostname: cyka-syncthing
environment:
- PUID=1000
- PGID=1000
volumes:
- /mnt/data/docker/volumes/captain--sync-data/_data:/var/syncthing
network_mode: host
restart: unless-stopped
healthcheck:
test: curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1
interval: 1m
timeout: 10s
retries: 3