From f357f40fc7dc6e2ca53a841bdeb1837b9b44c3d3 Mon Sep 17 00:00:00 2001 From: RayBB Date: Mon, 5 Feb 2024 16:45:46 +0100 Subject: [PATCH] add syncthing template --- templates/compose/syncthing.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/compose/syncthing.yaml diff --git a/templates/compose/syncthing.yaml b/templates/compose/syncthing.yaml new file mode 100644 index 000000000..19ca2c0fa --- /dev/null +++ b/templates/compose/syncthing.yaml @@ -0,0 +1,19 @@ +# documentation: https://syncthing.net/ +# slogan: Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it’s transmitted over the internet. +# tags: filestorage, data, synchronization + +services: + syncthing: + image: 'lscr.io/linuxserver/syncthing:latest' + environment: + - SERVICE_FQDN_SYNCTHING + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + volumes: + - 'syncthing-config:/config' + ports: + - '8384:8384' + - '22000:22000/tcp' + - '22000:22000/udp' + - '21027:21027/udp'