美文网首页
CentOS 7安装Docker CE

CentOS 7安装Docker CE

作者: 辉耀辉耀 | 来源:发表于2018-03-06 16:26 被阅读0次

Docker现在分为两个版本,Docker CE和Docker EE
其中Docker CE为开源版,Docker EE为企业版
本文为Docker CE的部署,环境为CentOS 7,VMware虚拟机一台(CentOS原生YUM源)
Docker官网 https://www.docker.com/
本文参考官方部署文档 https://docs.docker.com/install/linux/docker-ce/centos/#prerequisites

1.卸载旧版本(确保没有旧版本的Docker残留文件)

$ sudo yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-selinux \
                  docker-engine-selinux \
                  docker-engine

yum报告没有安装以上软件即可
2.安装Docker CE
安装Docker的方法有三种,通过官方yum源进行安装、下载RPM包手动安装,使用一些脚本进行安装
在这里有正常联网能力的用户建议选择用官方yum源进行安装即可
首先安装存储驱动

$ sudo yum install -y yum-utils device-mapper-persistent-data lvm2

下载官方yum源文件

$ sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

(可选)启用边缘和测试存储库,通常是禁用状态,也可以选择启用

$ sudo yum-config-manager --enable docker-ce-edge
$ sudo yum-config-manager --enable docker-ce-test

如果启用后后悔的话可以使用以下命令禁用边缘和测试存储库

$ sudo yum-config-manager --disable docker-ce-edge

到这里就可以开始安装Docker CE了

$ sudo yum install docker-ce

到这里你也许会感觉到下载速度奇慢无比,但实际上也就是docker-ce-17.12.1.ce-1.el7.centos.x86_64.rpm这个文件下载缓慢
所以这里建议可以的话自己下载下来这个包进行安装会比较好一些

下载链接
https://download.docker.com/linux/centos/7/x86_64/stable/Packages/docker-ce-17.12.1.ce-1.el7.centos.x86_64.rpm

另外关于Docker的版本号,2017年2月开始Docker官方启用了新的版本号规则,之前的1.12.6之类的停用,转而使用17.2.1这样的版本号,这个版本号的意思就是17年2月的第1个版本
所以可以的话请到官网查询当前最新版本号再进行下载,我这里部署时间为18年3月,当前最新版本号依然是17.12.1,即为17年12月发布的版本

$ yum -y install lrzsz
$ rz -E
$ yum -y install docker-ce-17.12.1.ce-1.el7.centos.x86_64.rpm 

Complete!

在生产环境Docker官方建议安装特定版本的Docker CE,而不是始终使用最新版本
使用以下命令查看可用的版本

$ yum list docker-ce --showduplicates | sort -r
docker-ce.x86_64            17.12.1.ce-1.el7.centos             installed       
docker-ce.x86_64            17.12.1.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.12.0.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.09.1.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.09.0.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.06.2.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.06.1.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.06.0.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.03.2.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.03.1.ce-1.el7.centos             docker-ce-stable
docker-ce.x86_64            17.03.0.ce-1.el7.centos             docker-ce-stable

3.启动Docker

$ sudo systemctl start docker

4.验证安装是否正确

$ sudo docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
ca4f61b1923c: Pull complete 
Digest: sha256:083de497cff944f969d8499ab94f07134c50bcf5e6b9559b27182d3fa80ce3f7
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://cloud.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/

简单翻译一下

来自Docker的问候!
此消息表明您的安装似乎正常工作。

为了生成此消息,Docker采取了以下步骤:
 1. Docker客户端联系了Docker守护进程。
 2. Docker守护进程从Docker Hub中提取“hello-world”图像。
    (AMD64)
 3. Docker守护进程从运行该映像的映像创建一个新的容器
    可执行文件生成您正在阅读的输出。
 4. Docker守护进程将输出流式传输到发送它的Docker客户端
    到您的终端。

要尝试更雄心勃勃的事情,你可以运行一个Ubuntu容器:
 $ docker run -it ubuntu bash

通过免费的Docker ID共享图像,自动化工作流程等等:
 https://cloud.docker.com/

有关更多示例和想法,请访问:
 https://docs.docker.com/engine/userguide/

与此同此你的Docker镜像库中多了一个Hello-world,你的Docker容器库中也多了一个Hello-world

$ docker image list
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
hello-world         latest              f2a91732366c        3 months ago        1.85kB
$ docker ps -a
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS                     PORTS               NAMES
4b0296d18849        hello-world         "/hello"            8 minutes ago       Exited (0) 8 minutes ago                       hopeful_yonath

4.升级Docker CE

$ yum -y upgrade 你的新版本docker文件

相关文章

网友评论

      本文标题:CentOS 7安装Docker CE

      本文链接:https://www.haomeiwen.com/subject/tpkrfftx.html