From 0cf401ac8c04fc5863af0181a9bafdf8b73eca3a Mon Sep 17 00:00:00 2001 From: thoralmighty Date: Thu, 6 Jun 2024 11:34:55 +0200 Subject: [PATCH] Added syncthing --- naspi/syncthing/docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 naspi/syncthing/docker-compose.yml diff --git a/naspi/syncthing/docker-compose.yml b/naspi/syncthing/docker-compose.yml new file mode 100644 index 0000000..90a6253 --- /dev/null +++ b/naspi/syncthing/docker-compose.yml @@ -0,0 +1,19 @@ +services: + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + hostname: syncthing #optional + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + volumes: + - /mnt/data/storage/syncthing/config:/config + - /mnt/data/storage/syncthing/data:/data + # - /path/to/data2:/data2 + ports: + - 8384:8384 + - 22000:22000/tcp + - 22000:22000/udp + - 21027:21027/udp + restart: unless-stopped