From cdec035b5ea0d22cb77ec6511a0a7b51589509f3 Mon Sep 17 00:00:00 2001 From: pixelthorn Date: Tue, 30 Jun 2026 20:39:56 -0500 Subject: [PATCH] Add syncthing.yaml --- syncthing.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 syncthing.yaml diff --git a/syncthing.yaml b/syncthing.yaml new file mode 100644 index 0000000..0ae3453 --- /dev/null +++ b/syncthing.yaml @@ -0,0 +1,23 @@ +services: + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + restart: unless-stopped + #hostname: syncthing #optional + environment: + - PUID=1001 + - PGID=1001 + - TZ=America/Chicago + volumes: + - /srv/docker/utilities/syncthing:/config + - /mnt/raid1/profiles/jessica/syncthing:/var/syncthing + ports: # need to allow firewall + - 8384:8384 #Application WebUI + - 22000:22000/tcp #Listening port (TCP) + - 22000:22000/udp #Listening port (UDP) + - 21027:21027/udp #Protocol discovery + networks: + - proxy-net +networks: + proxy-net: + external: true