This commit is contained in:
Zengtudor 2024-11-09 21:19:43 +08:00
commit f6f71a241b
2 changed files with 20 additions and 0 deletions

1
rxr_syncthing/.env Normal file
View File

@ -0,0 +1 @@
PATH=/root/great_wall/syncthing

View File

@ -0,0 +1,19 @@
version: "3"
services:
syncthing:
image: syncthing/syncthing
container_name: syncthing
hostname: my-syncthing
environment:
- PUID=1000
- PGID=1000
volumes:
- ${PATH}/syncthing:/var/syncthing
- ${PATH}:/file
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