If you and your team are working on a containerized project, you often need a database to store information. MySQL is one of the most popular database systems available today. In this guide, we’ll walk you through how to install MySQL in your Docker container on Windows.
If you don’t already have Docker, you can download the installer from the Docker website. Run the installer with the default configuration options.
After installing, you will need to restart your machine.
Check out the list of MySQL versions available in docker. To get the latest one, use pull
:
docker pull mysql
The MySQL image requires that you supply a root password. You cannot set this in the Docker Desktop GUI and must do so through the command line (PowerShell or cmd):
docker run --name my-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=mypassword -d mysql
The -p
flag in this command forwards the MySQL server port from Docker to the host machine. In this case, we are not changing the port, so both values will be the same.
If you don’t already have a database and user, you can follow these steps to create them now. First, navigate to your MySQL container in Docker and click the ‘CLI’ button to launch a shell client:
A terminal window should appear. First run mysql -u root -p
and enter your specified root password when prompted. Once you reach the MySQL prompt, run the following commands, substituting myDB, myUser and myPassword for your own desired information.
CREATE DATABASE myDB;
CREATE USER ‘myUser’@’%’ IDENTIFIED BY ‘myPassword’;
GRANT ALL PRIVILEGES ON myDB.* TO 'myUser'@'%';
To connect to your new MySQL database server from an SQL client, you’ll need the following information:
IP/Host: If your docker container is deployed on a remote machine or cluster, you run this command to get the IP address:
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' YOUR_CONTAINER_NAME
Otherwise, if your docker container is deployed on your local machine, your hostname will simply be localhost
.
myDB
.myUser
.myPassword
.In the Arctype connection screen, enter the above information and click Test Connection. If everything is entered correctly, you should see a ‘Successfully connected to MySQL’ message appear at the bottom of the screen:
After confirming your connection details, press Save!