From 094d63292ccbf7d5308d168830a869605fbc2f22 Mon Sep 17 00:00:00 2001 From: sven Date: Fri, 19 Dec 2025 11:14:30 +0100 Subject: [PATCH] =?UTF-8?q?Verzeichnis=20/opt/=20hinzugef=C3=BCgt=20=3D>?= =?UTF-8?q?=20damit=20kann=20dann=20dieser=20Ordner=20auch=20ins=20Backup?= =?UTF-8?q?=20aufgenommen=20werden.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- duplicati/compose.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 duplicati/compose.yaml diff --git a/duplicati/compose.yaml b/duplicati/compose.yaml new file mode 100755 index 0000000..12e0689 --- /dev/null +++ b/duplicati/compose.yaml @@ -0,0 +1,26 @@ +services: + duplicati: + image: lscr.io/linuxserver/duplicati:latest + container_name: duplicati + deploy: + resources: + limits: + cpus: 3 + memory: 4G + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - SETTINGS_ENCRYPTION_KEY=e232082ac53182f82487df27fe2d19dd23de0b4cb91736f824f7d5deab5e2a74 + - CLI_ARGS= #optional + - DUPLICATI__WEBSERVICE_PASSWORD= #optional + volumes: + - ./config:/config + - /media/openmediavault:/backups + - /media:/source + - /media/webdav:/webdav + - /opt:/docker-opt + ports: + - 9200:8200 + restart: no #unless-stopped +networks: {}