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.

30 lines
1.8 KiB

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_EXTRA_OPTIONS` add mysqldump options without overriding the default `MYSQLDUMP_OPTIONS` (default: empty)
  10. - `MYSQLDUMP_DATABASE` list of databases you want to backup (default: --all-databases)
  11. - `MYSQL_HOST` the mysql host *required*
  12. - `MYSQL_PORT` the mysql port (default: 3306)
  13. - `MYSQL_USER` the mysql user *required*
  14. - `MYSQL_PASSWORD` the mysql password *required*
  15. - `S3_ACCESS_KEY_ID` your AWS access key *required*
  16. - `S3_SECRET_ACCESS_KEY` your AWS secret key *required*
  17. - `S3_BUCKET` your AWS S3 bucket path *required*
  18. - `S3_PREFIX` path prefix in your bucket (default: 'backup')
  19. - `S3_FILENAME` a consistent filename to overwrite with your backup. If not set will use a timestamp.
  20. - `S3_REGION` the AWS S3 bucket region (default: us-west-1)
  21. - `S3_ENDPOINT` the AWS Endpoint URL, for S3 Compliant APIs such as [minio](https://minio.io) (default: none)
  22. - `S3_ENSURE_BUCKET_EXISTS` set to `no` to assume the bucket exists, avoiding the need of S3 read permissions (default: yes)
  23. - `S3_S3V4` set to `yes` to enable AWS Signature Version 4, required for [minio](https://minio.io) servers (default: no)
  24. - `MULTI_FILES` Allow to have one file per database if set `yes` default: no)
  25. - `SCHEDULE` backup schedule time in [cron format](https://crontab.guru) like `7 2,14 * * *`