安装
1)依赖的基础环境
- 64 位CPU
- Linux kernel(内核) 3.10+
- Linux kernel cgroups and namespaces
我用的是openEuler,所以直接yum安装(推荐,因为二进制安装,docker命令中补全操作要另外安装软件)
[root@localhost ~]# yum -y install docker-ce #安装的是默认最新版本
2) 配置docker镜像加速
(1) docker cn 加速
[root@localhost ~]# mkdir -p /etc/docker
[root@localhost ~]# sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
EOF
(2)阿里云加速器
注册阿里云账号 , 专用加速器地址获得路径:
https://cr.console.aliyun.com/#/accelerator
这个是免费的而且有操作帮助,个人感觉还挺快
3)启动
[root@localhost~]# systemctl daemon-reload
[root@localhost~]# systemctl start docker.service
[root@localhost~]# systemctl enable docker.service
查看版本
[root@localhost ~]# docker version