refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+3
View File
@@ -0,0 +1,3 @@
# Duplicati
Proxy port: 8200
+16
View File
@@ -0,0 +1,16 @@
services:
duplicati:
image: ${DUPLICATI_IMAGE:-duplicati/duplicati:latest}
volumes:
- ${VOL_PATH:-./data}/duplicati/config:/data
- ${VOL_PATH:-./data}/duplicati/backups:/backups
- ${VOL_PATH:-./data}/duplicati/source:/source:ro
# Add More sorces, for example: - /NAS:/source_nas:ro
- ${VOL_PATH:-./data}/duplicati/restore:/restore
environment:
TZ: ${TZ:-America/Vancouver}
SETTINGS_ENCRYPTION_KEY: "${DUPLICATI_KEY:-ThisNeedsToChange}"
DUPLICATI__WEBSERVICE_PASSWORD: "${DUPLICATI_PASS:-changeMe}"
restart: unless-stopped
ports:
- "8200:8200"
+7
View File
@@ -0,0 +1,7 @@
TZ=America/Vancouver
VOL_PATH=./data
# Duplicati
DUPLICATI_IMAGE=duplicati/duplicati:latest #2.1.0.5
DUPLICATI_KEY=ThisNeedsToChange
DUPLICATI_PASS=changeMe