Added docker-compose home

This commit is contained in:
willem.serruys
2025-10-04 17:18:13 +02:00
parent e30efb0c67
commit a4d9535851
2 changed files with 20 additions and 10 deletions

19
docker-compose-home.yml Normal file
View File

@@ -0,0 +1,19 @@
services:
syncthing-home:
image: syncthing/syncthing
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- ${STORAGE_DIR}/syncthing:/var/syncthing
restart: unless-stopped
env_file:
- environment-variables/local.env
ports:
- 127.0.0.1:8384:8384
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