1. 配置 yum 源(阿里云)
- 安装 wget
yum install -y wget
- 备份/etc/yum.repos.d/CentOS-Base.repo 文件
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base.repo.back
- 下载阿里云的 Centos-6.repo 文件
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
- 重新加载 yum
yum clean all
yum makecache
2. 安装 docker
yum install docker -y
- 启动 docker
systemctl start docker #启动docker
systemctl enable docker #开机启动docker
systemctl status docker #查看docker状态
docker version #查看docker 版本
- 设置加速器
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://95822026.m.daocloud.io
systemctl restart docker #重启docker
设置完 daocloud 报错
Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
看了下 /etc/docker/daemon.json
因为设置 daocloud 实际上是修改了/etc/docker/daemon.json 这个文件,所以有可能是这个文件有问题,
cat /etc/docker/daemon.json
{"registry-mirrors": ["http://95822026.m.daocloud.io"],}
果然,json 格式不对,去掉逗号后就正常了
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于