From 7739988502605f533a5acb102498996f7edb8edf Mon Sep 17 00:00:00 2001 From: Gabe Date: Tue, 16 Dec 2025 03:06:48 +0000 Subject: [PATCH] Add Syncthing/Compose.yaml --- Syncthing/Compose.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Syncthing/Compose.yaml diff --git a/Syncthing/Compose.yaml b/Syncthing/Compose.yaml new file mode 100644 index 0000000..9a39daf --- /dev/null +++ b/Syncthing/Compose.yaml @@ -0,0 +1,18 @@ +services: + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + hostname: syncthing #optional + environment: + - PUID=1000 + - PGID=1000 + - TZ=CST/UTC + volumes: + - /srv/docker/syncthing/config:/config + - /mnt/DMZ_smb_share/Gabe's Music:/data + ports: + - 8384:8384 + - 22000:22000/tcp + - 22000:22000/udp + - 21027:21027/udp + restart: unless-stopped \ No newline at end of file