Skip to content

Commit

Permalink
Update install docker
Browse files Browse the repository at this point in the history
  • Loading branch information
khs1994 committed Dec 8, 2017
1 parent f60f4dd commit 9face88
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 53 deletions.
18 changes: 7 additions & 11 deletions install/centos.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,20 @@ $ sudo yum install -y yum-utils \
lvm2
```

鉴于国内网络问题,强烈建议使用国内源,下面先介绍国内源的使用。

#### 国内源
鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。

执行下面的命令添加 `yum` 软件源:

```bash
$ 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 请使用以下命令:
Expand All @@ -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
```
Expand Down
26 changes: 12 additions & 14 deletions install/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 软件源:
Expand All @@ -73,21 +75,17 @@ $ sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/$(. /etc/os-release; echo "$ID") \
$(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"
# 官方源
# $ 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 需要进行额外的操作:

编辑 `/etc/apt/sources.list` 将 deb-src 一行删除或者使用 # 注释。
Expand Down
26 changes: 12 additions & 14 deletions install/raspberry-pi.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 软件源:
Expand All @@ -45,21 +47,17 @@ $ sudo add-apt-repository \
"deb [arch=armhf] https://mirrors.ustc.edu.cn/docker-ce/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"
# 官方源
# $ 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。
#### 安装 Docker CE

更新 apt 软件包缓存,并安装 `docker-ce`
Expand Down
26 changes: 12 additions & 14 deletions install/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 软件源
Expand All @@ -69,21 +71,17 @@ $ sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/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"
# 官方源
# $ 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

更新 apt 软件包缓存,并安装 `docker-ce`
Expand Down

0 comments on commit 9face88

Please sign in to comment.