mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
Added Duplicati
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
# Duplicati
|
||||
|
||||
Proxy port: 8200
|
||||
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
duplicati:
|
||||
image: ${DUPLICATI_IMAGE:-duplicati/duplicati:latest}
|
||||
volumes:
|
||||
- ${VOL_PATH:-./data}/duplicati/config:/config # Persistent config directory
|
||||
- ${VOL_PATH:-./data}/duplicati/source:/source:ro # Read-only source data to back up
|
||||
- ${VOL_PATH:-./data}/duplicati/backups:/backups # Backup destination
|
||||
environment:
|
||||
TZ: ${TZ:-America/Vancouver}
|
||||
SETTINGS_ENCRYPTION_KEY: "ThisNeedsToChange"
|
||||
DUPLICATI__WEBSERVICE_PASSWORD: "changeMe"
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8200:8200"
|
||||
@@ -0,0 +1,5 @@
|
||||
TZ=America/Vancouver
|
||||
VOL_PATH=./data
|
||||
|
||||
# Duplicati
|
||||
DUPLICATI_IMAGE=duplicati/duplicati:latest #2.1.0.5
|
||||
Reference in New Issue
Block a user