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