Centos7更新yum源下载docker

1.卸载docker老版本

$ sudo yum remove docker
docker-client
docker-client-latest
docker-common
docker-latest
docker-latest-logrotate
docker-logrotate
docker-engine

2.备份下原来的yum源,即是重命名 CentOs-Base.repo -> CentOs-Base.repo.bak

cd /etc/yum.repos.d/

mv CentOS-Base.repo CentOS-Base.repo_bak

3.获取阿里云yum源

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

4.清除原有yum源缓存

yum clean all

5.生成阿里云yum源缓存

yum makecache

6.安装 yum-utils,它提供了 yum-config-manager,可用来管理yum源

yum install -y yum-utils

7.添加阿里云docker的yum源

yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

8.更新yum索引

yum makecache fast

你可能感兴趣的:(日常所用,centos,yum,linux,阿里云)