赞
踩
获取镜像:
[root@localhost home]# docker pull mysql:5.7 5.7: Pulling from library/mysql bf5952930446: Already exists 8254623a9871: Pull complete 938e3e06dac4: Pull complete ea28ebf28884: Pull complete f3cef38785c2: Pull complete 894f9792565a: Pull complete 1d8a57523420: Pull complete 5f09bf1d31c1: Pull complete 1b6ff254abe7: Pull complete 74310a0bf42d: Pull complete d398726627fd: Pull complete Digest: sha256:da58f943b94721d46e87d5de208dc07302a8b13e638cd1d24285d222376d6d84 Status: Downloaded newer image for mysql:5.7
运行容器,需要做数据挂载,mysql需要做密码配置
-d后台运行 -p端口映射 -v卷挂载 -e环境配置 --name容器i名字
[root@localhost home]# docker run -d -p 3310:3306 -v /home/mysql/conf:/etc/mysql/conf.d -v /home/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 --name mysql01 mysql:5.7
33f987454683844153b3c1dadcfee812266089429e34bbad0cca8a1346362127
这样表示启动成功了,可以启动数据连接工具,对启动的进行连接
这样我们的
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。