diff --git a/syncthing-docker-compse.yaml b/syncthing-docker-compse.yaml new file mode 100644 index 0000000..c8795d2 --- /dev/null +++ b/syncthing-docker-compse.yaml @@ -0,0 +1,18 @@ +--- +version: "3" +services: + syncthing: + image: syncthing/syncthing + container_name: syncthing + environment: + - PUID=1000 + - PGID=1000 + volumes: + - /volume1/Media:/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 \ No newline at end of file