2017-04-08 17:32:53 +02:00
[![Build Status ](https://travis-ci.org/fradelg/docker-mysql-cron-backup.svg?branch=master )](https://travis-ci.org/fradelg/docker-mysql-cron-backup)
2017-03-27 21:16:15 +02:00
# mysql-cron-backup
2017-04-16 11:29:31 +02:00
This docker image runs mysqldump to backup your databases periodically using cron task manager. Backups are placed in `/backup` so you can mount your backup docker volume in this path.
2017-03-27 21:16:15 +02:00
## Usage:
2017-04-16 11:29:31 +02:00
docker container run -d \
--env MYSQL_USER=root \
--env MYSQL_PASS=my_password \
2017-03-27 21:16:15 +02:00
--link mysql
2017-04-16 11:29:31 +02:00
--volume /path/to/my/backup/folder:/backup
2018-01-30 08:23:18 +01:00
fradelg/mysql-cron-backup
2017-03-27 21:16:15 +02:00
## Variables
MYSQL_HOST the host/ip of your mysql database
MYSQL_PORT the port number of your mysql database
MYSQL_USER the username of your mysql database
MYSQL_PASS the password of your mysql database
MYSQL_DB the database name to dump. Default: `--all-databases`
2018-04-26 19:56:25 +02:00
MYSQLDUMP_OPTS command line arguments to pass to mysqldump. Example: `--single-transaction`
2017-03-27 21:16:15 +02:00
CRON_TIME the interval of cron job to run mysqldump. `0 0 * * *` by default, which is every day at 00:00
MAX_BACKUPS the number of backups to keep. When reaching the limit, the old backup will be discarded. No limit by default
INIT_BACKUP if set, create a backup when the container starts
INIT_RESTORE_LATEST if set, restores latest backup
## Restore from a backup
2017-04-16 11:29:31 +02:00
See the list of backups in your running docker container, just write in your favorite terminal:
2017-03-27 21:16:15 +02:00
2017-04-16 11:29:31 +02:00
docker container exec backup ls /backup
2017-03-27 21:16:15 +02:00
2017-04-16 11:29:31 +02:00
To restore a database from a certain backup, simply run:
2017-03-27 21:16:15 +02:00
2017-04-16 11:29:31 +02:00
docker container exec backup /restore.sh /backup/201708060500.my_db.sql.gz