lawitschka / docker-mysql-s3-backup

Docker image for creating MySQL/MariaDB database backups stored in S3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MySQL S3 Backup

This Docker container enables you to backup a MySQL/MariaDB database to AWS S3. The container dumps the database using mysqldump, creates a gzipped tarball of the dump, and uploads the tarball to S3.

The container does not handle the scheduling of the backup. The actual backup has to be invoked from an external service like cron, a cron Docker container, Jenkins, etc.

Usage

Credentials and connection details are required to be passed into the container through environment variables. This enables you to create your derivant of the image for your specific use case. The following environment variables are expected:

  • MYSQL_HOST (optional, default db)
  • MYSQL_PORT (optional, default 3306)
  • MYSQL_USER (optional, default root)
  • MYSQL_PASS (optional, no default value)
  • AWS_REGION
  • AWS_ACCESS_KEY
  • AWS_SECRET_ACCESS_KEY

To run the backup for a locally deployed database, link the database container into the backup container:

$> docker run --link db_container:db \
              -e AWS_REGION=eu-central-1 \
              -e AWS_ACCESS_KEY_ID=12345 \
              -e AWS_SECRET_ACCESS_KEY=qwertz \
              lawitschka/mysql-s3-backup \
              s3_bucket/path/in/bucket example_db

This will dump the database example_db into an archive called example_db-XXXXXXXXXX.sql.tar.gz. The XXXXXXXXXX will be replaced with a UNIX epoch at the time of the backup. The backup script then uploads the archive to a S3 bucket called s3_bucket and into the folder path/in/bucket.

Alternatively, the database host can be defined through usage of the MYSQL_ environment variables:

$> docker run -e AWS_REGION=eu-central-1 \
              -e AWS_ACCESS_KEY_ID=12345 \
              -e AWS_SECRET_ACCESS_KEY=qwertz \
              -e MYSQL_HOST=db.example.com \
              -e MYSQL_USER=nondefaultuser \
              lawitschka/mysql-s3-backup \
              s3_bucket/path/in/bucket example_db

About

Docker image for creating MySQL/MariaDB database backups stored in S3

License:MIT License


Languages

Language:Shell 100.0%