mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-06-27 22:36:05 +00:00
16 lines
916 B
YAML
16 lines
916 B
YAML
services:
|
|
duplicati:
|
|
image: linuxserver/duplicati
|
|
container_name: duplicati
|
|
environment:
|
|
- PUID=1000 # Change to PUID=0 for running Duplicati as root
|
|
- PGID=1000 # Change to PUID=0 for running Duplicati as root
|
|
- TZ=America/Chicago # Change this
|
|
- CLI_ARGS= #optional # Additional CLI_args can be specified from https://duplicati.readthedocs.io/en/latest/07-other-command-line-utilities/
|
|
volumes:
|
|
- /home/pi/duplicati/config:/config
|
|
- /mnt/nfs-share/Duplicati_backups:/backups # Duplicati Backups are stored here
|
|
- /mnt/nfs-source:/source:ro # Directories to backup (Remove ro while restoring backups)
|
|
ports:
|
|
- 8200:8200
|
|
restart: unless-stopped |