MySQL 8 client programs with easy database export and import functionality.
500K+
MySQL 8 clientā for export and import databases easily using Docker.
This is a Linux Docker image using latest Debian 11-slimā (Bullseyeā ).
If you are looking for a MariaDB Client then go to Alpine MySQL Clientā project.
š³ View on Githubā
mysql
mysql_find_rows
mysql_waitpid
mysqladmin
mysqldump
mysqlimport
mysql-export
mysql_fix_extensions
mysqlaccess
mysqlcheck
mysqldumpslow
mysqlshow
For more details see official MySQL 8 Client Programsā documentation.
docker run -it --rm joseluisq/mysql-client mysql --version
# mysql Ver 8.0.28 for Linux on x86_64 (MySQL Community Server - GPL)
mysql.mysql home directory is located at /home/mysql.root. E.g append a --user root argument to docker run.mysql_exporter is a custom tool which exports a database script using mysqldump. Additionally it support gzip compression.
It can be configured via environment variables or using .env file.
# Connection settings (optional)
DB_PROTOCOL=tcp
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DEFAULT_CHARACTER_SET=utf8
# GZip export file (optional)
DB_EXPORT_GZIP=false
# SQL or Gzip export file (optional).
# If `DB_IMPORT_GZIP` is `true` then file name should be `database_name.sql.gz`
DB_EXPORT_FILE_PATH=database_name.sql
# Database settings (required)
DB_NAME=""
DB_USERNAME=""
DB_PASSWORD=""
# Additional arguments (optional)
DB_ARGS=
Notes:
DB_EXPORT_GZIP=true: Compress the sql file using Gzip (optional). If false or not defined then the exported file will be a .sql file.DB_ARGS: can be used in order to pass more mysqldump arguments (optional)..env example file can be found at ./8.0/env/mysql_exporter.envā The following Docker commands create a container in order to export a database and then remove such container automatically.
Note that mysql_exporter supports environment variables or a .env file can be passed as an argument.
docker run --rm -it \
--volume $PWD:/home/mysql/sample \
--user $(id -u $USER):$(id -g $USER) \
--workdir /home/mysql/sample \
joseluisq/mysql-client:8 \
mysql_exporter production.env
# MySQL 8 Client - Exporter
# =========================
# mysqldump Ver 8.0.28 for Linux on x86_64 (MySQL Community Server - GPL)
# Exporting database `mydb` into a SQL script file...
# Output file: database_name.sql (SQL Text)
# mysqldump: [Warning] Using a password on the command line interface can be insecure.
# Database `mydb` was exported on 0s successfully!
# File exported: database_name.sql (4.0K / SQL Text)
Notes:
--volume $PWD:/home/mysql/sample specificy a bind mount directoryā from host to container.$PWD is just a example host working directory. Use your own path./home/mysql/ is default home directory user (optional). View User privilegesā section above./home/mysql/sample is a container directory that Docker will create for us.--workdir /home/mysql/sample specificy the working directory used by default inside the container.production.env is a custom env file path with the corresponding environment variables passed as argument. That file shoud available in your host working directory. E.g $PWD in my case.version: "3.3"
services:
exporter:
image: joseluisq/mysql-client:8
env_file: .env
command: mysql_exporter
working_dir: /home/mysql/sample
volumes:
- ./:/home/mysql/sample
networks:
- default
mysql_importer is a custom tool which imports a SQL script file (text or Gzip) using mysql command.
It can be configured via environment variables or using .env file.
# Connection settings (optional)
DB_PROTOCOL=tcp
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DEFAULT_CHARACTER_SET=utf8
# GZip import support (optional)
DB_IMPORT_GZIP=false
# SQL or Gzip import file (required)
# If `DB_IMPORT_GZIP` is `true` then file name should be `database_name.sql.gz`
DB_IMPORT_FILE_PATH=database_name.sql
# Database settings (required)
DB_NAME=""
DB_USERNAME=""
DB_PASSWORD=""
# Additional arguments (optional)
DB_ARGS=
The following Docker commands create a container in order to import a SQL script file to an specific database and removing the container afterwards.
Note that mysql_importer supports environment variables or a .env file can be passed as an argument.
docker run --rm -it \
--volume $PWD:/home/mysql/sample \
--user $(id -u $USER):$(id -g $USER) \
--workdir /home/mysql/sample \
joseluisq/mysql-client:8 \
mysql_importer production.env
# MySQL 8 Client - Importer
# =========================
# mysql Ver 8.0.28 for Linux on x86_64 (MySQL Community Server - GPL)
# Importing a SQL script file into database `mydb`...
# Input file: database_name.sql (4.0K / SQL Text)
# mysql: [Warning] Using a password on the command line interface can be insecure.
# Database `mydb` was imported on 1s successfully!
Notes:
DB_IMPORT_GZIP=true: Decompress a dump file using Gzip (optional). If false or not defined then the import file will be treated as plain .sql file.DB_ARGS: can be used in order to pass more mysql arguments (optional)..env example file can be found at ./8.0/env/mysql_importer.envā Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in current work by you, as defined in the Apache-2.0 license, shall be dual licensed as described below, without any additional terms or conditions.
Feel free to send some pull requestā or file some issueā .
This work is primarily distributed under the terms of both the MIT licenseā and the Apache License (Version 2.0)ā .
Ā© 2022-present Jose Quintanaā
Content type
Image
Digest
sha256:064ce3838ā¦
Size
75.4 MB
Last updated
9 months ago
docker pull joseluisq/mysql-client