docker mirror mounting mysql

First view mirror mysql
docker search mysql
Here Insert Picture Description

Download mysql
docker pull mysql:5.7
Here Insert Picture Description

Start and port mapping

docker run --name mysql -p 3306:3306 -v /root/docker_mysql:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=xxx -d mysql:5.7

-Name: container name alias                Zhengzhou infertility hospital: http: //jbk.39.net/yiyuanzaixian/zztjyy//        

-p 3306: 3306: The container port mapping to the server port

-v / root / docker_mysql: / var / lib / mysql: mysql configuration mapped onto the path / root / docker_mysql

-e MYSQL_ROOT_PASSWORD = xxx: Set server password xxx

-d mysql start container name

Here Insert Picture Description
View start moving containers
docker ps -a
Here Insert Picture Description


Guess you like

Origin blog.51cto.com/14393769/2409118