summaryrefslogtreecommitdiff
path: root/images/backup/restore.yml
blob: 6640b261ae3bb97563584a7a197152c35cdf5049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: '3'

services:
  backup:
    env_file:
      - config.env
    build: ./duplicity
    command: /bin/sh /restore.sh
    hostname: duplicity
    restart: "no"
    volumes:
      - ./restored:/data
      - ./gpg_keys:/gpg_keys

volumes:
  cache: