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

centos 7 安装docker教程

时间:2020-07-22 16:17:18      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:epo   指定   util   --   tps   dao   app   system   软件包   

CentOS7.x安装Docker

# 安装依赖包

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

# 添加Docker软件包源

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

# 安装最新版Docker CE

yum install -y docker-ce

#安装指定版本,可以使用yum list列出可用的版本:

yum list docker-ce --showduplicates | sort -r

yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io

比如这里需要安装18.09.9版本

yum -y install docker-ce-18.09.9-3.el7

# 启动Docker服务并设置开机启动

systemctl start docker

systemctl enable docker

官方文档:https://docs.docker.com

阿里云源:http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

添加 docker 镜像加速:https://www.daocloud.io/mirror

curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361db2.m.daocloud.io

163镜像加速

http://hub-mirror.c.163.com

centos 7 安装docker教程

标签:epo   指定   util   --   tps   dao   app   system   软件包   

原文地址:https://www.cnblogs.com/qiansm/p/13360639.html

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