docker-duplicity-backup/README.md

20 lines
1.2 KiB
Markdown
Raw Normal View History

2021-04-27 23:28:48 +02:00
# docker-duplicity-backup
2021-04-28 00:00:01 +02:00
Docker container and script to backup a list of docker volumes to a remote duplicity target.
## Usage
```
$ ./docker-duplicity-backup <config_file>
```
The `config_file` parameter is mandatory and must designate a script file which set these variables:
* `DOCKER_HOSTNAME`: hostname used for the container running the backup (optional; defaults to '`backup`').
This hostname should be the same through incremental backups, or duplicity will complain.
* `VOLUMES`: space separated list of docker volumes to backup (mandatory).
* `DUPLICITY_REMOTE_URI`: target URI for duplicity backup (mandatory; e.g. 'rsync://backup.example.com//target/path').
* `DUPLICITY_CACHE_VOLUME`: docker volume name to use for duplicity cache persistency (optional; defaults to '`backup_cache`').
* `INIT_FOLDER`: local path to mount into the container as `/root/init.d` (optional).
The scripts into this folder will be sourced by the container's entrypoint before starting the backup. Useful for starting an `stunnel` service.
* `DOCKER_EXTRA_OPTIONS`: docker run options such as environment variables or extra volumes (optional). Useful for importing an ssh configuration folder.