feat: Initial commit.
This commit is contained in:
18
compose.yaml
Normal file
18
compose.yaml
Normal 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
7
example.env
Normal 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
|
||||||
Reference in New Issue
Block a user