官方文档:https://docs.docker.com/engine/install/centos/
方式一:yum安装
1、安装docker
下载依赖包
yum -y install gcc yum -y install gcc-c++ yum install -y yum-utils
设置仓库
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
更新yum软件包索引
yum makecache fast
安装DOCKER CE
yum -y install docker-ce docker-ce-cli containerd.io
2、启动docker
systemctl start docker
设置开机自启动
systemctl enable docker
3、验证
查看docker
docker version
运行helloworld
docker run hello-world
方式二:离线安装
安装包下载:https://download.docker.com/linux/static/stable/x86_64/
安装参考:
1、https://blog.csdn.net/jeikerxiao/article/details/109242726