mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
fix first batch of _dev stacks: authentik, directus, duplicati, filebrowser, firefly, headscale, homepage, invoiceninja, jellyfin, lubelogger
This commit is contained in:
+17
-10
@@ -1,16 +1,23 @@
|
||||
services:
|
||||
duplicati:
|
||||
image: ${DUPLICATI_IMAGE:-duplicati/duplicati:latest}
|
||||
restart: ${DUPLICATI_RESTART:-unless-stopped}
|
||||
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
|
||||
- ${VOL_PATH:-/data}/duplicati/config:/data
|
||||
- ${VOL_PATH:-/data}/duplicati/backups:/backups
|
||||
- ${VOL_PATH:-/data}/duplicati/source:/source: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
|
||||
- TZ=${TZ:-America/Vancouver}
|
||||
- SETTINGS_ENCRYPTION_KEY=${DUPLICATI_KEY:-ThisNeedsToChange}
|
||||
- DUPLICATI__WEBSERVICE_PASSWORD=${DUPLICATI_PASS:-changeMe}
|
||||
ports:
|
||||
- "8200:8200"
|
||||
- "${DUPLICATI_PORT:-8200}:8200"
|
||||
networks:
|
||||
- proxy
|
||||
- internal
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
internal:
|
||||
|
||||
Reference in New Issue
Block a user