We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With a blackout period of 1800 to 0800, backups are still running hourly with the default backup begin time of 2am.
compose.yaml:
... services: db-backup: image: tiredofit/db-backup:4.1.4 environment: DEFAULT_BACKUP_BEGIN: "0200" DB01_BACKUP_INTERVAL: ${DB_BACKUP_INTERVAL:-1440} DB01_BACKUP_BLACKOUT_BEGIN: ${DB_BACKUP_BLACKOUT_BEGIN} DB01_BACKUP_BLACKOUT_END: ${DB_BACKUP_BLACKOUT_END} ...
.env:
DB_BACKUP_INTERVAL=60 DB_BACKUP_BLACKOUT_BEGIN=1800 DB_BACKUP_BLACKOUT_END=0800
Resulting in this actual container environment:
DB01_BACKUP_BLACKOUT_BEGIN=1800 DB01_BACKUP_BLACKOUT_END=0800 DB01_BACKUP_INTERVAL=60 DEFAULT_BACKUP_BEGIN=0200
Backups aren't running between 1800 and 0800.
docker-db-backup/install/assets/dbbackup/template-dbbackup/run
Line 73 in 4fc54e2
docker-db-backup/install/assets/functions/10-db-backup
Line 204 in 4fc54e2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
With a blackout period of 1800 to 0800, backups are still running hourly with the default backup begin time of 2am.
Steps to reproduce
compose.yaml:
.env:
Resulting in this actual container environment:
What is the expected correct behavior?
Backups aren't running between 1800 and 0800.
Possible fixes
docker-db-backup/install/assets/dbbackup/template-dbbackup/run
Line 73 in 4fc54e2
docker-db-backup/install/assets/functions/10-db-backup
Line 204 in 4fc54e2
Shouldn't these match?
The text was updated successfully, but these errors were encountered: