Centos 7.2 下安装Docker CE

准备

环境:CentOS Linux release 7.2.1511 (Core)
参考页面:Docker 官方安装指引
安装Docker CE前,请先准备好一台CentOS 服务器,如果你是在Windows下进行测试,推荐使用VirtualBox创建虚拟机。

Centos 7.2 下安装Docker CE_第1张图片
Virtual Box VM

通过yum Docker 源仓库安装Docker CE

官方的安装指引里提到了三种方式:
①:通过yum Docker源仓库安装
②:通过下载的安装包安装
③:通过快捷脚本安装

本文将通过yum Docker源仓库的方式来安装Docker CE

第一步、安装yum 管理依赖包

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

如果你的系统已经安装了yum管理工具,则会看到如下的提示:

Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
Package yum-utils-1.1.31-34.el7.noarch already installed and latest version
Package device-mapper-persistent-data-0.5.5-1.el7.x86_64 already installed and latest version
Package 7:lvm2-2.02.130-5.el7.x86_64 already installed and latest version
Nothing to do

第二步、添加Docker 源仓库

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

你将看到如下的提示:

Loaded plugins: fastestmirror, langpacks
adding repo from: https://download.docker.com/linux/centos/docker-ce.repo
grabbing file https://download.docker.com/linux/centos/docker-ce.repo to /etc/yum.repos.d/docker-ce.repo
docker-ce.repo                                                                                                                  | 2.4 kB  00:00:00   
repo saved to /etc/yum.repos.d/docker-ce.repo

第三步、安装Docker CE

sudo yum install docker-ce docker-ce-cli containerd.io

如果不出意外,Docker 将顺利安装完成。但也有可能遇到以下的错误:

[root@localhost docker]# sudo yum install docker-ce docker-ce-cli containerd.io
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package containerd.io.x86_64 0:1.2.2-3.el7 will be installed
---> Package docker-ce.x86_64 3:18.09.1-3.el7 will be installed
--> Processing Dependency: container-selinux >= 2.9 for package: 3:docker-ce-18.09.1-3.el7.x86_64
--> Processing Dependency: libseccomp >= 2.3 for package: 3:docker-ce-18.09.1-3.el7.x86_64
--> Processing Dependency: libcgroup for package: 3:docker-ce-18.09.1-3.el7.x86_64
--> Processing Dependency: libseccomp.so.2()(64bit) for package: 3:docker-ce-18.09.1-3.el7.x86_64
---> Package docker-ce-cli.x86_64 1:18.09.1-3.el7 will be installed
--> Processing Dependency: libltdl.so.7()(64bit) for package: 1:docker-ce-cli-18.09.1-3.el7.x86_64
--> Running transaction check
---> Package docker-ce.x86_64 3:18.09.1-3.el7 will be installed
--> Processing Dependency: container-selinux >= 2.9 for package: 3:docker-ce-18.09.1-3.el7.x86_64
--> Processing Dependency: libseccomp >= 2.3 for package: 3:docker-ce-18.09.1-3.el7.x86_64
---> Package libcgroup.x86_64 0:0.41-8.el7 will be installed
---> Package libseccomp.x86_64 0:2.2.1-1.el7 will be installed
---> Package libtool-ltdl.x86_64 0:2.4.2-20.el7 will be installed
--> Finished Dependency Resolution
Error: Package: 3:docker-ce-18.09.1-3.el7.x86_64 (docker-ce-stable)
           Requires: container-selinux >= 2.9
Error: Package: 3:docker-ce-18.09.1-3.el7.x86_64 (docker-ce-stable)
           Requires: libseccomp >= 2.3
           Available: libseccomp-2.2.1-1.el7.i686 (CENTOS7.2-basic)
               libseccomp = 2.2.1-1.el7
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest

这里我们遇到了一个错误,安装Docker CE 需要依赖 container-selinux >= 2.9,我们只需要安装一下这个依赖包即可。

安装container-selinux 2.9

[root@localhost docker]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[root@localhost docker]# yum install epel-release
[root@localhost docker]# yum install container-selinux 

因为安装container-selinux 需要依赖epel源,所以这里需要先安装epel源,这里我们使用了阿里云的源仓库。
安装完container-selinux 后,再一次执行上面的docker 安装指令,就可以顺利安装完成了。

第四步、启动Docker 服务

[root@localhost docker]# systemctl enable docker    // 设置开机启动
[root@localhost docker]# systemctl start docker        // 启动docker
[root@localhost docker]# systemctl status docker 

你将看到Docker的状态信息如下:状态为running,表示docker 已经运行了。

● docker.service - Docker Application Container Engine
   Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
   Active: active (running) since Thu 2019-01-31 14:58:31 CST; 6h ago
     Docs: https://docs.docker.com
Main PID: 80152 (dockerd)
   Memory: 38.5M
   CGroup: /system.slice/docker.service
           └─80152 /usr/bin/dockerd -H fd://

[root@localhost docker]# docker info         //查看一下docker 的信息

你将看到如下信息:

Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 18.09.1
Storage Driver: devicemapperPool Name: docker-253:3-16854418-pool
Pool Blocksize: 65.54kB
。。。。。。。。。。。。。。。。。。。。。。。。

第五步、运行第一个Docker应用

Docker 也和其他的编程语言一样,也提供了非常著名的Hello World应用。我们只需要执行如下指令即可运行第一个Docker 应用:

[root@localhost docker]# docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete
Digest: sha256:2557e3c07ed1e38f26e389462d03ed943586f744621577a99efb77324b0fe535
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.

因为是第一次运行hello-world,所以本地没有这个镜像,因此会自动从远程的docker仓库下载该镜像。然后显示出:Hello from Docker!

执行:docker ps,将会显示出刚刚已经运行的容器
执行:docker images,将会显示已经下载的hello-world镜像

到此,我们的Docker 基本上就已经安装完成了,开始你的Docker之旅吧。

你可能感兴趣的:(Centos 7.2 下安装Docker CE)