From 9face881c79085fc832686c5de8fb55c295a4c5a Mon Sep 17 00:00:00 2001 From: khs1994 Date: Sat, 9 Dec 2017 00:12:02 +0800 Subject: [PATCH] Update install docker --- install/centos.md | 18 +++++++----------- install/debian.md | 28 +++++++++++++--------------- install/raspberry-pi.md | 26 ++++++++++++-------------- install/ubuntu.md | 28 +++++++++++++--------------- 4 files changed, 45 insertions(+), 55 deletions(-) diff --git a/install/centos.md b/install/centos.md index 70b916e..fb0907d 100644 --- a/install/centos.md +++ b/install/centos.md @@ -27,9 +27,7 @@ $ sudo yum install -y yum-utils \ lvm2 ``` -鉴于国内网络问题,强烈建议使用国内源,下面先介绍国内源的使用。 - -#### 国内源 +鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。 执行下面的命令添加 `yum` 软件源: @@ -37,16 +35,12 @@ $ sudo yum install -y yum-utils \ $ sudo yum-config-manager \ --add-repo \ https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo -``` ->以上命令会添加稳定版本的 Docker CE yum 源。从 Docker 17.06 开始,edge test 版本的 yum 源也会包含稳定版本的 Docker CE。 -#### 官方源 - -```bash -$ sudo yum-config-manager \ - --add-repo \ - https://download.docker.com/linux/centos/docker-ce.repo +# 官方源 +# $ sudo yum-config-manager \ +# --add-repo \ +# https://download.docker.com/linux/centos/docker-ce.repo ``` 如果需要最新版本的 Docker CE 请使用以下命令: @@ -55,6 +49,8 @@ $ sudo yum-config-manager \ $ sudo yum-config-manager --enable docker-ce-edge ``` +如果需要测试版本的 Docker CE 请使用以下命令: + ```bash $ sudo yum-config-manager --enable docker-ce-test ``` diff --git a/install/debian.md b/install/debian.md index 151d359..b6a9ce5 100644 --- a/install/debian.md +++ b/install/debian.md @@ -56,14 +56,16 @@ $ sudo apt-get install \ ``` -鉴于国内网络问题,强烈建议使用国内源,下面先介绍国内源的使用。 - -#### 国内源 +鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。 为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。 ```bash $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add - + + +# 官方源 +# $ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - ``` 然后,我们需要向 `source.list` 中添加 Docker CE 软件源: @@ -73,20 +75,16 @@ $ sudo add-apt-repository \ "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/$(. /etc/os-release; echo "$ID") \ $(lsb_release -cs) \ stable" + + +# 官方源 +# $ sudo add-apt-repository \ +# "deb [arch=amd64] https://download.docker.com/linux/debian \ +# $(lsb_release -cs) \ +# stable" ``` ->以上命令会添加稳定版本的 Docker CE APT 镜像源,如果需要最新版本的 Docker CE 请将 stable 改为 edge 或者 test。从 Docker 17.06 开始,edge test 版本的 APT 镜像源也会包含稳定版本的 Docker CE。 - -#### 官方源 - -```bash -$ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - - -$ sudo add-apt-repository \ - "deb [arch=amd64] https://download.docker.com/linux/debian \ - $(lsb_release -cs) \ - stable" -``` +>以上命令会添加稳定版本的 Docker CE APT 镜像源,如果需要最新或者测试版本的 Docker CE 请将 stable 改为 edge 或者 test。从 Docker 17.06 开始,edge test 版本的 APT 镜像源也会包含稳定版本的 Docker CE。 Debian 7 需要进行额外的操作: diff --git a/install/raspberry-pi.md b/install/raspberry-pi.md index a85b83e..bd2d388 100644 --- a/install/raspberry-pi.md +++ b/install/raspberry-pi.md @@ -28,14 +28,16 @@ $ sudo apt-get install \ software-properties-common ``` -鉴于国内网络问题,强烈建议使用国内源,下面先介绍国内源的使用。 - -#### 国内源 +鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。 为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。 ```bash $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/raspbian/gpg | sudo apt-key add - + + +# 官方源 +# $ curl -fsSL https://download.docker.com/linux/raspbian/gpg | sudo apt-key add - ``` 然后,我们需要向 `source.list` 中添加 Docker CE 软件源: @@ -45,21 +47,17 @@ $ sudo add-apt-repository \ "deb [arch=armhf] https://mirrors.ustc.edu.cn/docker-ce/linux/raspbian \ $(lsb_release -cs) \ stable" + + +# 官方源 +# $ sudo add-apt-repository \ +# "deb [arch=armhf] https://download.docker.com/linux/raspbian \ +# $(lsb_release -cs) \ +# stable" ``` >以上命令会添加稳定版本的 Docker CE APT 镜像源,如果需要最新版本的 Docker CE 请将 stable 改为 edge 或者 test。从 Docker 17.06 开始,edge test 版本的 APT 镜像源也会包含稳定版本的 Docker CE。 -#### 官方源 - -```bash -$ curl -fsSL https://download.docker.com/linux/raspbian/gpg | sudo apt-key add - - -$ sudo add-apt-repository \ - "deb [arch=armhf] https://download.docker.com/linux/raspbian \ - $(lsb_release -cs) \ - stable" -``` - #### 安装 Docker CE 更新 apt 软件包缓存,并安装 `docker-ce`。 diff --git a/install/ubuntu.md b/install/ubuntu.md index df7a916..cb60aae 100644 --- a/install/ubuntu.md +++ b/install/ubuntu.md @@ -52,14 +52,16 @@ $ sudo apt-get install \ software-properties-common ``` -鉴于国内网络问题,强烈建议使用国内源,下面先介绍国内源的使用。 - -#### 国内源 +鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。 为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。 ```bash $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add - + + +# 官方源 +# $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - ``` 然后,我们需要向 `source.list` 中添加 Docker 软件源 @@ -69,20 +71,16 @@ $ sudo add-apt-repository \ "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \ $(lsb_release -cs) \ stable" + + +# 官方源 +# $ sudo add-apt-repository \ +# "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ +# $(lsb_release -cs) \ +# stable" ``` ->以上命令会添加稳定版本的 Docker CE APT 镜像源,如果需要最新版本的 Docker CE 请将 stable 改为 edge 或者 test。从 Docker 17.06 开始,edge test 版本的 APT 镜像源也会包含稳定版本的 Docker。 - -#### 官方源 - -```bash -$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - -$ sudo add-apt-repository \ - "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ - $(lsb_release -cs) \ - stable" -``` +>以上命令会添加稳定版本的 Docker CE APT 镜像源,如果需要最新或者测试版本的 Docker CE 请将 stable 改为 edge 或者 test。从 Docker 17.06 开始,edge test 版本的 APT 镜像源也会包含稳定版本的 Docker。 #### 安装 Docker CE