安装docker添加阿里源
时间: 2023-12-28 20:05:56 浏览: 142
为了加速 Docker 的下载速度,可以将 Docker 的源设置为阿里云镜像源。具体步骤如下:
1. 卸载旧版本的 Docker。
2. 安装 apt-transport-https、ca-certificates、curl、software-properties-common。
3. 添加阿里云镜像源的 GPG 密钥。
4. 添加阿里云镜像源。
5. 更新 apt 软件包缓存,并安装 docker-ce。
6. 启动 Docker CE。
7. 建立 docker 用户组。
具体命令如下:
1. 卸载旧版本的 Docker:
$ sudo apt-get remove docker docker-engine docker.io containerd runc
2. 安装 apt-transport-https、ca-certificates、curl、software-properties-common:
$ sudo apt-get update
$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
3. 添加阿里云镜像源的 GPG 密钥:
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
4. 添加阿里云镜像源:
$ sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
5. 更新 apt 软件包缓存,并安装 docker-ce:
$ sudo apt-get update
$ sudo apt-get install docker-ce
6. 启动 Docker CE:
$ sudo systemctl enable docker
$ sudo systemctl start docker
7. 建立 docker 用户组:
$ sudo groupadd docker
$ sudo usermod -aG docker $USER
--相关问题--:
1. 如何使用 Docker?
2. Docker 的优势是什么?
3. Docker 和虚拟机的区别是什么?
阅读全文