如何安装docker?
时间: 2023-11-16 19:59:16 浏览: 89
安装docker的步骤如下:
1. 首先,移除已经装好的Docker。
2. 然后,安装必要的依赖包。
3. 接着,从Docker官网下载Docker安装包。
4. 安装Docker。
5. 启动Docker服务。
6. 最后,添加阿里云镜像源,这样拉取镜像更快一些。
具体步骤如下:
1. 移除已经装好的Docker:sudo apt-get remove docker docker-engine docker.io containerd runc。
2. 安装必要的依赖包:sudo apt-get update && sudo apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common。
3. 从Docker官网下载Docker安装包:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"。
4. 安装Docker:sudo apt-get update && sudo apt-get install -y docker-ce docker-ce-cli containerd.io。
5. 启动Docker服务:sudo systemctl start docker。
6. 添加阿里云镜像源,这样拉取镜像更快一些:在/etc/docker/daemon.json文件中添加以下内容:{ "registry-mirrors": [ "https://sv9xgrl5.mirror.aliyuncs.com", "https://registry***.mirrors.ustc.edu.cn" ], "insecure-registries": [], "debug": true, "experimental": false }。
阅读全文