Recently I have been using Ansible and Vagrant to test the MySQL 5.7 release candidates but several of you asked about using Docker. The hardest part of this process will be installing Docker on your operating system of choice and that is fairly easy. I am using Ubuntu 14.04 LTS and the installation was a wget command.
Next comes the magic. Docker will download the MySQL 5.7.8-rc
image if it is not already loaded locally and then start
it.
docker run -p 3306:3306 --name mysql -e
MYSQL_ROOT_PASSWORRD=secret -d
mysql:5.7.8-rc
The quick translation of the above is that we are telling Docker
to set up a container named mysql on port 3306 using a password
of secret, run all this as a daemon using MySQL version 5.7.8-rc.
And MySQL 5.7.8-rc is running. But to find it you will have to
ask Docker where the server is running.
…