Last active
November 18, 2022 00:16
-
-
Save dnburgess/afee89678005424e0c68e8111d4be155 to your computer and use it in GitHub Desktop.
DB Tech Duplicati on Pi 4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
duplicati: | |
image: linuxserver/duplicati | |
container_name: duplicati | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver | |
volumes: | |
- /srv/dev-disk-by-label-Files/Config/Duplicati:/config #Config Files | |
- /srv/dev-disk-by-label-Files/Backups:/BackupStorage #Backup Storage | |
- /srv/dev-disk-by-label-Files/Config:/ConfigBackup #What to Backup | |
- /srv/dev-disk-by-label-Files/Databases:/DatabaseBackup #What to Backup | |
ports: | |
- 8200:8200 | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment