From 1bf19743be7bb36b18836eb334e3b2b2a081794c Mon Sep 17 00:00:00 2001 From: moshferatu Date: Wed, 3 Apr 2024 14:01:09 -0700 Subject: [PATCH] Add compose file for syncthing on the server --- syncthing_server.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 syncthing_server.yaml diff --git a/syncthing_server.yaml b/syncthing_server.yaml new file mode 100644 index 0000000..a497198 --- /dev/null +++ b/syncthing_server.yaml @@ -0,0 +1,17 @@ +version: "3" +services: + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + environment: + - PUID=0 + - PGID=0 + volumes: + - /syncthing/config:/config + - :/sync + ports: + - 8384:8384 + - 22000:22000/tcp + - 22000:22000/udp + - 21027:21027/udp + restart: unless-stopped \ No newline at end of file