Run test backup every minute

Change interval of cron to backup every minute instead of once a day at
midnight to make it in line with the documentation.
This commit is contained in:
Max Stabel
2019-09-30 01:50:52 +02:00
committed by Tobias Kaupat
parent ec42bdd04c
commit 15012cdab1

2
run.sh
View File

@@ -7,7 +7,7 @@ echo "Start backup-test container. Backup of ~/test-data/ to repository ~/test-r
docker run --privileged --name backup-test \
-e "RESTIC_PASSWORD=test" \
-e "RESTIC_TAG=test" \
-e "BACKUP_CRON=0 0 * * *" \
-e "BACKUP_CRON=* * * * *" \
-e "RESTIC_FORGET_ARGS=--keep-last 10" \
-v ~/test-data:/data \
-v ~/test-repo/:/mnt/restic \