2021-09-10 14:20:43 +00:00
|
|
|
version: '2.4'
|
2021-09-10 14:16:03 +00:00
|
|
|
services:
|
|
|
|
borgmatic:
|
2021-09-10 14:20:43 +00:00
|
|
|
image: modem7/borgmatic-docker
|
|
|
|
container_name: Borgmatic
|
2021-09-10 14:16:03 +00:00
|
|
|
volumes:
|
|
|
|
- ${VOLUME_SOURCE}:/mnt/source:ro # backup source
|
|
|
|
- ${VOLUME_TARGET}:/mnt/borg-repository # backup target
|
|
|
|
- ${VOLUME_ETC_BORGMATIC}:/etc/borgmatic.d/ # borgmatic config file(s) + crontab.txt
|
|
|
|
- ${VOLUME_BORG_CONFIG}:/root/.config/borg # config and keyfiles
|
|
|
|
- ${VOLUME_SSH}:/root/.ssh # ssh key for remote repositories
|
|
|
|
- ${VOLUME_BORG_CACHE}:/root/.cache/borg # checksums used for deduplication
|
|
|
|
environment:
|
|
|
|
- TZ=${TZ}
|
|
|
|
- BORG_PASSPHRASE=${BORG_PASSPHRASE}
|