标签:doc other 自动启动 system var centos7 镜像 enable tar
1 uname -r查看内核版本是否高于3.10
2 yum -y install docker-ce安装docker
3 systemctl start docker启动docker
systemctl enable docker设置开机自动启动
4 docker run hello-word运行hello-world容器(会自动下载hello-world镜像并启动容器)
other:
yum remove docker-ce 卸载docker
rm -rf /var/lib/docker
标签:doc other 自动启动 system var centos7 镜像 enable tar
原文地址:https://www.cnblogs.com/WaterGe/p/11067385.html