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.

31 lines
1.5 KiB

9 years ago
9 years ago
9 years ago
9 years ago
  1. # mysql-backup-s3
  2. Backup MySQL to S3 (supports periodic backups & mutli files)
  3. ## Basic usage
  4. ```sh
  5. $ docker run -e S3_ACCESS_KEY_ID=key -e S3_SECRET_ACCESS_KEY=secret -e S3_BUCKET=my-bucket -e S3_PREFIX=backup -e MYSQL_USER=user -e MYSQL_PASSWORD=password -e MYSQL_HOST=localhost schickling/mysql-backup-s3
  6. ```
  7. ## Environment variables
  8. - `MYSQLDUMP_OPTIONS` mysqldump options (default: --quote-names --quick --add-drop-table --add-locks --allow-keywords --disable-keys --extended-insert --single-transaction --create-options --comments --net_buffer_length=16384)
  9. - `MYSQLDUMP_DATABASE` list of databases you want to backup (default: --all-databases)
  10. - `MYSQL_HOST` the mysql host *required*
  11. - `MYSQL_PORT` the mysql port (default: 3306)
  12. - `MYSQL_USER` the mysql user *required*
  13. - `MYSQL_PASSWORD` the mysql password *required*
  14. - `S3_ACCESS_KEY_ID` your AWS access key *required*
  15. - `S3_SECRET_ACCESS_KEY` your AWS secret key *required*
  16. - `S3_BUCKET` your AWS S3 bucket path *required*
  17. - `S3_PREFIX` path prefix in your bucket (default: 'backup')
  18. - `S3_REGION` the AWS S3 bucket region (default: us-west-1)
  19. - `MULTI_FILES` Allow to have one file per database if set `yes` default: no)
  20. - `SCHEDULE` backup schedule time, see explainatons below
  21. ### Automatic Periodic Backups
  22. You can additionally set the `SCHEDULE` environment variable like `-e SCHEDULE="@daily"` to run the backup automatically.
  23. More information about the scheduling can be found [here](http://godoc.org/github.com/robfig/cron#hdr-Predefined_schedules).