centos/redhat
安装所需的软件包
yum-utils device-mapper-persistent-data lvm2
- yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo #添加镜像源
- sudo sed -i 's+download.docker.com+mirrors.aliyun.com/docker-ce+' /etc/yum.repos.d/docker-ce.repo
或者cd /etc/yum.repos.d/&&curl -O https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
- yum makecache fast #更新缓存
yum install docker-ce
#ce是社区版的意思记得start和enable一下
ubuntu
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg #添加验证文件
- echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null #下载仓库文件
- apt-get update
- apt-get install docker-ce docker-ce-cli containerd.io -y
更改docker镜像源
在/etc/docker/daemon.json里 #若没有这个文件夹则mkdir /etc/docker
里面文件内容添加
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn" ]
}
Docker国内镜像源
- Docker中国区官方镜像:https://registry.docker-cn.com
- 网易:http://hub-mirror.c.163.com
- ustc:https://docker.mirrors.ustc.edu.cn
- 中国科技大学:https://docker.mirrors.ustc.edu.cn
- 阿里云:https://cr.console.aliyun.com/
默认 Docker 的存放位置为:/var/lib/docker