Duplicati is tested and working

This commit is contained in:
2025-09-20 02:01:59 -07:00
parent 2f8e9c478f
commit 03f2a81f0a
2 changed files with 10 additions and 6 deletions
+7 -5
View File
@@ -2,13 +2,15 @@ services:
duplicati: duplicati:
image: ${DUPLICATI_IMAGE:-duplicati/duplicati:latest} image: ${DUPLICATI_IMAGE:-duplicati/duplicati:latest}
volumes: volumes:
- ${VOL_PATH:-./data}/duplicati/config:/config # Persistent config directory - ${VOL_PATH:-./data}/duplicati/config:/data
- ${VOL_PATH:-./data}/duplicati/source:/source:ro # Read-only source data to back up - ${VOL_PATH:-./data}/duplicati/backups:/backups
- ${VOL_PATH:-./data}/duplicati/backups:/backups # Backup destination - ${VOL_PATH:-./data}/duplicati/source:/source:ro
# Add More sorces, for example: - /NAS:/source_nas:ro
- ${VOL_PATH:-./data}/duplicati/restore:/restore
environment: environment:
TZ: ${TZ:-America/Vancouver} TZ: ${TZ:-America/Vancouver}
SETTINGS_ENCRYPTION_KEY: "ThisNeedsToChange" SETTINGS_ENCRYPTION_KEY: "${DUPLICATI_KEY:-ThisNeedsToChange}"
DUPLICATI__WEBSERVICE_PASSWORD: "changeMe" DUPLICATI__WEBSERVICE_PASSWORD: "${DUPLICATI_PASS:-changeMe}"
restart: unless-stopped restart: unless-stopped
ports: ports:
- "8200:8200" - "8200:8200"
+3 -1
View File
@@ -2,4 +2,6 @@ TZ=America/Vancouver
VOL_PATH=./data VOL_PATH=./data
# Duplicati # Duplicati
DUPLICATI_IMAGE=duplicati/duplicati:latest #2.1.0.5 DUPLICATI_IMAGE=duplicati/duplicati:latest #2.1.0.5
DUPLICATI_KEY=ThisNeedsToChange
DUPLICATI_PASS=changeMe