Initial commit

This commit is contained in:
Lucas
2025-06-04 12:50:50 +00:00
commit 947c6f36ed
3 changed files with 72 additions and 0 deletions

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
services:
syncthing:
image: syncthing/syncthing
container_name: syncthing
restart: always
volumes:
- ./data:/var/syncthing
environment:
- PUID=1000
- PGID=1000
networks:
- reverse-proxy
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
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
networks:
reverse-proxy:
external: true