Update filenames

This commit is contained in:
2026-02-24 19:24:05 +05:30
parent 0e85234631
commit 9fe8704abe
5 changed files with 0 additions and 0 deletions

27
syncthing/compose.yaml Normal file
View File

@@ -0,0 +1,27 @@
services:
syncthing:
container_name: syncthing
image: ghcr.io/syncthing/syncthing:2.0.14
restart: unless-stopped
hostname: ${HOSTNAME}
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- ${APPDATA_PATH}/syncthing/data:/var/syncthing
ports:
- 8384:8384 # Web UI
- 22000:22000/tcp # TCP file transfers
- 22000:22000/udp # QUIC file transfers
- 21027:21027/udp # Local discovery broadcasts
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:
- frontend
networks:
frontend:
external: true