From ba05a76e6e21ae684ebf9cd7c7e187a41c7d59f6 Mon Sep 17 00:00:00 2001 From: john Date: Sat, 16 May 2026 23:16:17 +0000 Subject: [PATCH] Add syncthing/docker-compose.yml --- syncthing/docker-compose.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 syncthing/docker-compose.yml diff --git a/syncthing/docker-compose.yml b/syncthing/docker-compose.yml new file mode 100644 index 0000000..79de288 --- /dev/null +++ b/syncthing/docker-compose.yml @@ -0,0 +1,21 @@ + --- +services: + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + hostname: syncthing omega + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - /path/to/syncthing/config:/config + - /path/to/data1:/data1 + - /path/to/data2:/data2 + ports: + - 8384:8384 + - 22000:22000/tcp + - 22000:22000/udp + - 21027:21027/udp + restart: unless-stopped + \ No newline at end of file