feat: Initial commit.

This commit is contained in:
2025-04-16 14:54:16 -04:00
parent 5a7459305d
commit 0ee7bc4c87
2 changed files with 25 additions and 0 deletions

18
compose.yaml Normal file
View File

@@ -0,0 +1,18 @@
services:
duplicati:
image: lscr.io/linuxserver/duplicati:latest
container_name: duplicati
restart: unless-stopped
env_file: .env
ports:
- 8200:8200
networks:
- proxy
volumes:
- ${CONFIG_MNT}:/config
- ${BACKUP_MNT}:/backups
- /var/lib/docker/volumes:/source
networks:
proxy:
external: true

7
example.env Normal file
View File

@@ -0,0 +1,7 @@
PUID=1000 # user id.
PGID=1000 # group id.
TZ=America/New_York
SETTINGS_ENCRYPTION_KEY=secret
DUPLICATI__WEBSERVICE_PASSWORD=secret
CONFIG_MNT=/mnt
BACKUP_MNT=/mnt