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

Centos 7.x 安装 Docker-ce

时间:2018-02-25 13:01:01      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:zone   div   ali   定时   tab   utils   repo   util   系统时间   

Centos 下安装 Docker-ce

CentOS 7.0, CentOS 7.2:

cat > /etc/yum.repos.d/docker-main.repo << -EOF 
[docker-main-repo]
name=Docker main Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/7
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg
-EOF

yum install docker-engine -y
systemctl start docker

 

CentOS 7.4:

yum install -y yum-utils

yum-config-manager \     
--add-repo https://download.docker.com/linux/centos/docker-ce.repo
 
yum install docker-ce
systemctl start docker

 

注意:这里的服务器系统时间需要设置为中国时区,时间不同可能会导致镜像无法下载,很多人喜欢用虚拟机来做实验,最好把命令放到定时任务中。

ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
/usr/sbin/ntpdate ntp1.aliyun.com
crontab -e

添加

*/5 * * * * /usr/sbin/ntpdate ntp1.aliyun.com > /dev/null 2>&1

 

Centos 7.x 安装 Docker-ce

标签:zone   div   ali   定时   tab   utils   repo   util   系统时间   

原文地址:https://www.cnblogs.com/klvchen/p/8468855.html

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