在虚拟机里安装容器
一、yum安装GCC相关的环境依赖
yum -y install gcc
yum install -y gcc-c++
yum install -y yum-untils
二、设置stable repository仓库
1.yum-config-manager --add-repo
http://mirrors.aliyun.com/docker-ce/liunx/centos/docker-ce.repo
三、更新yum软件包索引
1.yum makecache fast
四、安装dockerce
yum install docker-cedocker-ce-cli http://containerd.io
五、启动Docker
systemctl start docker
六、测试是否安装成功
docker version
七、跑一下docker的第一个容器
docker run hello-world