参考文章:CentOS 安装 Docker 1.拉取wordpress镜像 docker pull wordpress 2.拉取mysql镜像,以5.6版本为例 docker pull mysql:5.6 # 如果需要获取最新版本,命令为:docker pull mysql:latest 3.查看镜像是否拉取成功 docker images 4.检查mysql的3306端口是否被占用 netstat -antp | grep "3306" | grep -v "grep" 5.启动mysql do…