📅  最后修改于: 2023-12-03 15:39:04.461000             🧑  作者: Mango
Docker是一个开源的虚拟化工具,让开发者可以快速构建、测试和部署容器化的应用。本文将介绍如何在CentOS 7上安装Docker CE(社区版)。
如果您已经安装过docker,请先卸载旧版本
sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engine
使用yum命令安装所需的一些依赖包
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
更新yum缓存并安装Docker CE(社区版)
sudo yum install docker-ce docker-ce-cli containerd.io
sudo systemctl start docker && sudo systemctl enable docker
输入以下命令验证docker是否安装成功
sudo docker run --rm hello-world
结果显示如下:
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete
Digest: sha256:92695bc579f31df7a63da6922075d0666e565ceccad16b59c3374d2cf4e8e50e
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
在CentOS 7上安装Docker CE(社区版)是非常简单的。按照上述步骤进行操作,您将能够成功完成安装并验证Docker CE是否已正确安装。