mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 10:56: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
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
|
|
||||||
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
|
|
||||||
# filebrowser
|
# filebrowser
|
||||||
FILEBROWSER_IMAGE=filebrowser/filebrowser:latest
|
FILEBROWSER_IMAGE=filebrowser/filebrowser:latest
|
||||||
VOL_CONFIG_PATH=./config #HELP: configpath
|
VOL_CONFIG_PATH=./config #HELP: configpath
|
||||||
|
|||||||
Reference in New Issue
Block a user