adding untested changes and new dockers

This commit is contained in:
mk
2026-03-11 22:18:38 -03:00
parent fae6ea1abe
commit 52af4904da
34 changed files with 949 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
PUID=1000
PGID=1001
TZ=America/Chicago
SETTINGS_ENCRYPTION_KEY=changeme
SOURCE_PATH=./source
BACKUP_PATH=./backup

View File

@@ -0,0 +1,5 @@
# Duplicate: backups
change SETTINGS_ENCRYPTION_KEY on .env so it'll correctly encrypt everything.
Source directory is where what you want to backup is
Backup directory is where you want your backup copies to go

View File

@@ -0,0 +1,20 @@
---
services:
duplicati:
image: lscr.io/linuxserver/duplicati:latest
container_name: duplicati
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- SETTINGS_ENCRYPTION_KEY=${SETTINGS_ENCRYPTION_KEY}
- CLI_ARGS= --unencrypted-database #optional
- DUPLICATI__WEBSERVICE_PASSWORD= #optional
- USAGEREPORTER_Duplicati_LEVEL=none # Completely removes all telemetry
volumes:
- ./config:/config
- ${BACKUP_PATH}:/backups
- ${SOURCE_PATH}:/source
ports:
- 8200:8200
restart: unless-stopped