Dublicati hinzugefügt

This commit is contained in:
borgal
2021-09-29 14:43:18 +00:00
parent 05e849252e
commit f61c974f83
2 changed files with 28 additions and 0 deletions

2
dublicati/.env.sample Normal file
View File

@@ -0,0 +1,2 @@
NFS_SERVER=192.168.0.xxx # oder hostname oder Domain
PFAD=/Pfad/zum/Ordner

View File

@@ -0,0 +1,26 @@
version: "2.1"
services:
duplicati:
image: ghcr.io/linuxserver/duplicati
container_name: duplicati
environment:
- PUID=0
- PGID=0
- TZ=Europe/Berlin
- CLI_ARGS= #optional
volumes:
- ./config:/config
- backup:/backups
- /opt:/source
ports:
- 8200:8200
restart: unless-stopped
volumes:
backup:
name: backup
driver: local
driver_opts:
type: nfs
o: addr=${NFS_SERVER},rw
device: ":${PFAD}"