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

Docker - Install docker on CentOS

时间:2017-01-06 14:24:41      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:repo   3.1   base   centos   system   exp   ble   bit   https   

1. 准备

由于 Dokcer 需要 64bit OS, 版本号 3.10 或者更新的版本。所以,需要我们先确认我们的 CentOS 系统

$ uname -r

 

output :: 3.10.0-229.el7.x86_64

 

2.使用Yum 安装

2.1 更新 yum 到最新版本

$ yum update

2.2 Add the yum repo

$ sudo tee /etc/yum.repos.d/docker.repo <<-‘EOF‘

[dockerrepo]

name=Docker Repository

baseurl=https://yum.dockerproject.org/repo/main/centos/7/

enabled=1

gpgcheck=1

gpgkey=https://yum.dockerproject.org/gpg

EOF

 

3. 安装 Docker

$yum install docker-engine

 

4. 打开Docker service.

$ systemctl enable docker.service

 

5. 启动 Docker daemon

$ systemctl start docker

 

6. 设置 daemon 默认启动

$ systemctl enable docke

 

Docker - Install docker on CentOS

标签:repo   3.1   base   centos   system   exp   ble   bit   https   

原文地址:http://www.cnblogs.com/atuotuo/p/6255996.html

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