duplicati
This commit is contained in:
parent
b32431e33d
commit
e9ed0e351a
2 changed files with 22 additions and 0 deletions
4
duplicati/doc.md
Normal file
4
duplicati/doc.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# Duplicati
|
||||
|
||||
- `config` Ordner erstellen
|
||||
- Bessere Lösung überlegen als gesamtes FS als rw zu mounten
|
||||
18
duplicati/docker-compose.yml
Normal file
18
duplicati/docker-compose.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
version: "3"
|
||||
services:
|
||||
duplicati:
|
||||
image: lscr.io/linuxserver/duplicati:latest
|
||||
container_name: duplicati
|
||||
volumes:
|
||||
- ./config:/config
|
||||
# Mount large directory to store backups
|
||||
- /mnt/endlager/backups:/backups
|
||||
# mount whole fs to enable backing it up
|
||||
- /:/source
|
||||
environment:
|
||||
- PUID=0
|
||||
- PGID=0
|
||||
- TZ=Europe/Berlin
|
||||
ports:
|
||||
- 8200:8200
|
||||
restart: unless-stopped
|
||||
Loading…
Add table
Add a link
Reference in a new issue