CentOS7 install Docker

Posted jhxxb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 install Docker相关的知识,希望对你有一定的参考价值。

Docker 从 17.03 版本之后分为 CE(Community Edition 社区版)和 EE(Enterprise Edition 企业版)两个版本。

https://blog.docker.com/2017/03/docker-enterprise-edition/

这里安装 CE 版本。

 

一、安装

卸载旧版本

sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engine

安装

# step 1: 安装必要的一些系统工具
sudo yum install -y yum-utils device-mapper-persistent-data lvm2

# Step 2: 添加软件源信息
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

# Step 3: 更新并安装Docker-CE
sudo yum makecache fast
sudo yum -y install docker-ce

# Step 4: 开启Docker服务
sudo systemctl start docker

# 开机自启
sudo systemctl enable docker

安装指定版本

# 官方软件源默认启用了最新的软件,您可以通过编辑软件源的方式获取各个版本的软件包。例如官方并没有将测试版本的软件源置为可用,您可以通过以下方式开启。同理可以开启各种测试版本等。
# vim /etc/yum.repos.d/docker-ee.repo
#   将[docker-ce-test]下方的enabled=0修改为enabled=1
#
# 安装指定版本的Docker-CE:
# Step 1: 查找Docker-CE的版本:
# yum list docker-ce.x86_64 --showduplicates | sort -r
#   Loading mirror speeds from cached hostfile
#   Loaded plugins: branch, fastestmirror, langpacks
#   docker-ce.x86_64            17.03.1.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
#   Available Packages
# Step2: 安装指定版本的Docker-CE: (VERSION例如上面的17.03.0.ce.1-1.el7.centos)
# sudo yum -y install docker-ce-[VERSION]

安装校验

docker version

 

二、切换镜像源

daemon.json 配置说明:https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file

关于守护进程:https://docs.docker.com/config/daemon/

以网易为例,创建或修改 /etc/docker/daemon.json 文件(默认没有该文件)

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-EOF

  "registry-mirrors": ["https://hub-mirror.c.163.com"]

EOF
# 重启服务
sudo systemctl daemon-reload
sudo systemctl restart docker

# 查看当前配置信息
docker info

其它源

中国科技大学
https://docker.mirrors.ustc.edu.cn

阿里云(需注册)
https://cr.console.aliyun.com/

华为云(需注册)
https://mirrors.huaweicloud.com/

测试

docker run hello-world

技术图片

 


https://docs.docker.com/install/linux/docker-ce/centos/

https://help.aliyun.com/document_detail/60742.html

https://help.aliyun.com/document_detail/60750.html

以上是关于CentOS7 install Docker的主要内容,如果未能解决你的问题,请参考以下文章

centos7 install 安装mysql

How to install OpenBazaar Server in CentOS7

Vm install centos7

Centos7 install python-rrdtoll-1.47 erro

centos7 install lnmp

centos7 install python3