You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- version: '2'
- services:
- duplicity:
- build:
- context: .
- dockerfile: Dockerfile.ubuntu
- volumes:
- - ./my-backups:/backups
- - ./my-data:/data:ro
- environment:
- PASSPHRASE: Correct.Horse.Battery.Staple
- CLEANUP_COMMAND: remove-older-than 5m
- CRON_SCHEDULE: "* * * * *"
- VERIFY_CRON_SCHEDULE: "* * * * *"
|