blob: edc535a42a269903eb917bef5302a943c822e0d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
version: '3'
services:
restore:
env_file:
- $IMAGES/backup/config.env
build: $IMAGES/backup/duplicity
command: /bin/sh /restore.sh
hostname: duplicity
restart: "no"
volumes:
- ./restored:/data
- $IMAGES/backup/gpg_keys:/gpg_keys
|