From c651e6c095fb83cbe6fbe4ed5ed4d84f209086b2 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Tue, 21 Nov 2023 05:44:05 -0800 Subject: [PATCH] Add Syncthing Docker compose file --- syncthing.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 syncthing.yaml diff --git a/syncthing.yaml b/syncthing.yaml new file mode 100644 index 0000000..9f9e2b2 --- /dev/null +++ b/syncthing.yaml @@ -0,0 +1,17 @@ +version: "3" +services: + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + environment: + - PUID= + - PGID= + volumes: + - /syncthing/config:/config + - :/data + ports: + - 8384:8384 + - 22000:22000/tcp + - 22000:22000/udp + - 21027:21027/udp + restart: unless-stopped \ No newline at end of file