fix first batch of _dev stacks: authentik, directus, duplicati, filebrowser, firefly, headscale, homepage, invoiceninja, jellyfin, lubelogger

This commit is contained in:
openhands
2026-07-16 04:56:21 +00:00
parent 1b77ca5844
commit 6eedbf4a0d
20 changed files with 327 additions and 266 deletions
+17 -10
View File
@@ -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:
+6 -3
View File
@@ -1,7 +1,10 @@
TZ=America/Vancouver
VOL_PATH=./data
# Compose
VOL_PATH=/data
DUPLICATI_IMAGE=duplicati/duplicati:latest
DUPLICATI_RESTART=unless-stopped
DUPLICATI_PORT=8200
# Duplicati
DUPLICATI_IMAGE=duplicati/duplicati:latest #2.1.0.5
DUPLICATI_KEY=ThisNeedsToChange
DUPLICATI_PASS=changeMe
TZ=America/Vancouver