1、查看系统信息
lsb_release -a
2、查看内核版本
uname -r
3、安装必要的一些系统工具
yum install -y yum-utils device-mapper-persistent-data lvm2
。。。。。。
4、设置源仓库,我们用阿里云的地址
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
5、执行缓存
yum makecache fast
6、执行安装最新社区版docker,docker-ce为社区免费版本
yum install docker-ce
。。。。。。
7、启动docker服务
service docker start 或者 systemctl start docker
8、查看服务运行情况
ps aux | grep docker
9、通过运行hello-world镜像来验证是否正确安装了Docker Engine-Community
docker run hello-world 或者 docker pull hello-world
10、查看docker服务信息
docker info
。。。。。。
看到此界面,证明docker服务已经可以正常使用!
标签:ce,centos7.9,yum,linux,world,docker,hello From: https://www.cnblogs.com/firstlady/p/17635786.html