version: "3"
services:
syncthing:
image: syncthing/syncthing
container_name: syncthing
hostname: my-syncthing
environment:
- PUID=0
- PGID=0
- STGUIADDRESS=0.0.0.0:8384
volumes:
- /home/1panel/1panel/apps/openresty/openresty/www/sites/网站目录/index:/data
- ./st-sync:/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