docker的两种安装方法

docker的两种安装方法

  • 配置阿里云yum源安装docker
  • 使用yum直接安装

配置阿里云yum源安装docker

配置阿里云yum源,网络可用,centOS

[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# vim docker.repo
  1 [ali]
  2 name=aliyun
  3 baseurl=http://mirrors.aliyun.com/docker-ce/linux/centos/7/x86_64/stable/
  4 gpgkey=https://mirrors.aliyun.com/docker-ce/linux/centos/gpg
  5 enabled=1
  6 gpgcheck=1
[root@localhost ~]# curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361db2.m.daocloud.io(安装加速器)
[root@localhost ~]# yum install -y docker-ce(安装docker)
[root@localhost ~]# systemctl start docker(启动docker)

使用yum直接安装

centOS、网络可用

[root@localhost ~]# yum install -y yum-utils device-mapper-persistent-data lvm2(安装支持插件)
[root@localhost ~]#  yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
[root@localhost ~]# yum makecache fast(加速安装)
[root@localhost ~]# yum -y install docker-ce
[root@localhost ~]# service docker start

你可能感兴趣的:(docker的两种安装方法)