duplicati

This commit is contained in:
CDaut 2023-08-28 00:39:42 +02:00
parent b32431e33d
commit e9ed0e351a
2 changed files with 22 additions and 0 deletions

4
duplicati/doc.md Normal file
View file

@ -0,0 +1,4 @@
# Duplicati
- `config` Ordner erstellen
- Bessere Lösung überlegen als gesamtes FS als rw zu mounten

View 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