From d3d751b0912bb670c5b3b6679882ccf098fd6c68 Mon Sep 17 00:00:00 2001 From: Michael Scheidel Date: Thu, 27 Nov 2025 21:23:56 +0100 Subject: [PATCH] =?UTF-8?q?backup/syncthing/docker-compose.yml=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Einbindung paperless_media Verzeichnis (übergreifend) --- backup/syncthing/docker-compose.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 backup/syncthing/docker-compose.yml diff --git a/backup/syncthing/docker-compose.yml b/backup/syncthing/docker-compose.yml new file mode 100644 index 0000000..cffa7f5 --- /dev/null +++ b/backup/syncthing/docker-compose.yml @@ -0,0 +1,23 @@ +services: + syncthing: + image: lscr.io/linuxserver/syncthing:latest + container_name: syncthing + restart: unless-stopped + ports: + - "8384:8384" + - "22000:22000/tcp" + - "22000:22000/udp" + - "21027:21027/udp" + environment: + - PUID=1000 + - PGID=100 + - TZ=Europe/Berlin + volumes: + - syncthing-config:/config + - paperless_media:/media # <–– hier hängt das Paperless-Volume drin + +volumes: + syncthing-config: + paperless_media: + external: true + name: paperless-ngx_media # genauer Name des Volumes aus dem Paperless-Stack