I need an old version of Mysql Server : 5.1.73
I would like to use it inside a container, but I can't find an image since the first version available is 5.5. So I decided to install a CentOS 6 image and then install Mysql 5.1.73 using yum.
At then end I have a container with CentOS 6 and Mysql installed and configured according to my needs. At this step I commit the image in order to run the container.
I try the following command :
docker run -p 3307:3306 --name test-mysql --mount source=databases-vol,target=/databases -d centos6-mysql
But when I try to connect to my database I have an error message like this :
MySQL said: Host '172.17.0.1' is not allowed to connect to this MySQL server
What did I miss ?