准备工作
系统 centos7
切换阿里源
#备份资源文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
#导入阿里云Centos7源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#可选,功能同上
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#添加EPEL
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
#通常的yum工作
yum clean all
yum makecache
yum -y update
关闭Selinux
#用于关闭selinux防火墙,但重启后失效
setenforce 0
#永久关闭
vim /etc/selinux/config
将SELINUX=enforcing改为SELINUX=disabled
#重启
reboot
安装docker
yum install docker
安装&运行mysql
修改docker配置文件为国内源也是可以的,不过直接登录可以灵活切换不同的源
#登录七牛镜像
docker login reg.qiniu.com
随后输入 username & password
#拉取mysql镜像
docker pull reg.qiniu.com/library/mysql:latest
#run mysql
docker run --name mysql_1 -v /home/peter/DockerImgFile/mysql:/var/lib/mysql -p 3309:3306 -e MYSQL_ROOT_PASSWORD=123456 -d reg.qiniu.com/library/mysql:latest
原文地址:https://www.cnblogs.com/dopeter/p/10163223.html