码迷,mamicode.com
首页 > 其他好文 > 详细

centos7 安装docker

时间:2018-04-07 01:05:55      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:lin   int   source   world   sudo   archive   add   centos7   cache   

1、首先cent7 基本是在vm上完全安装‘、

2、参考官方网站安装

1、https://wiki.centos.org/AdditionalResources/Repositories

 

OS requirements 操作环境准备

To install Docker CE, you need a maintained version of CentOS 7. Archived versions aren’t supported or tested.

The centos-extras repository must be enabled. This repository is enabled by default, but if you have disabled it, you need to re-enable it.

The overlay2 storage driver is recommended.

 yum --enablerepo=extras install centos-release-scl

  

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

 

$ sudo yum install -y yum-utils



$ sudo yum-config-manager     --add-repo     https://docs.docker.com/v1.13/engine/installation/linux/repo_files/centos/docker.repo




$ sudo yum-config-manager --enable docker-testing


$ sudo yum makecache fast


$ sudo yum -y install docker-engine

  最后一步直接安装稳定版本

或者也可以安装指定版本:

 

查看有哪些版本可以安装

$ yum list docker-engine.x86_64  --showduplicates |sort -r

docker-engine.x86_64  1.13.0-1.el7                               docker-main
docker-engine.x86_64  1.12.5-1.el7                               docker-main   
docker-engine.x86_64  1.12.4-1.el7                               docker-main   
docker-engine.x86_64  1.12.3-1.el7                               docker-main   


安装指定版本

$ sudo yum -y install docker-engine-<VERSION_STRING>

 

测试:

 

Start Docker.

$ sudo systemctl start docker
Verify that docker is installed correctly by running the hello-world image.

$ sudo docker run hello-world

  

 

centos7 安装docker

标签:lin   int   source   world   sudo   archive   add   centos7   cache   

原文地址:https://www.cnblogs.com/cbugs/p/8729331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!