From cbb3d5fdbf8ba478ef505abd18a876d1d56c7732 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Thu, 26 Feb 2026 00:01:04 -0600 Subject: [PATCH] Add syncthing --- compose.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/compose.yaml b/compose.yaml index d0d42c2..25ee9a2 100644 --- a/compose.yaml +++ b/compose.yaml @@ -82,3 +82,21 @@ services: - "5055:5055" volumes: - seerr_data:/app/config + + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + hostname: homelab-syncthing + restart: unless-stopped + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + volumes: + - syncthing_data:/config + - /mnt/nas/data:/data + ports: + - "8384:8384" + - "22000:22000/tcp" + - "22000:22000/udp" + - "21027:21027/udp"