Skip to content

Commit

Permalink
rename docker ce to docker
Browse files Browse the repository at this point in the history
Signed-off-by: Kang Huaishuai <[email protected]>
  • Loading branch information
khs1994 committed Oct 12, 2020
1 parent f6ec3b2 commit 4751e59
Show file tree
Hide file tree
Showing 11 changed files with 58 additions and 62 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* 1.2.0 2020-12-31

* 1.1.0 2019-12-31
* 全面支持 v19.03 新版本
* 全面支持 Docker v19.03 新版本
* 增加 `BuildKit`
* 增加 `docker buildx` 命令使用说明
* 增加 `docker manifest` 命令使用说明
* 移除 `Ubuntu 14.04` `Debian 8` `Debian 7`

* 1.0.0: 2018-12-31
* 全面支持 v18.x 新版本
* 全面支持 Docker v18.x 新版本
* 添加如何调试 Docker
* 错误修正

Expand Down
6 changes: 2 additions & 4 deletions install/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# 安装 Docker

Docker 分为 CE EE 两大版本CE 即社区版免费支持周期 7 个月),EE 即企业版强调安全付费使用支持周期 24 个月
Docker 分为 `stable` `test` `nightly` 三个更新频道

Docker CE 分为 `stable` `test` `nightly` 三个更新频道

官方网站上有各种环境下的 [安装指南](https://docs.docker.com/install/),这里主要介绍 Docker CE 在 `Linux` 、`Windows 10` 和 `macOS` 上的安装。
官方网站上有各种环境下的 [安装指南](https://docs.docker.com/get-docker/),这里主要介绍 Docker 在 `Linux` 、`Windows 10` 和 `macOS` 上的安装。
21 changes: 9 additions & 12 deletions install/centos.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# CentOS 安装 Docker CE
# CentOS 安装 Docker

>警告切勿在没有配置 Docker YUM 源的情况下直接使用 yum 命令安装 Docker.

## 准备工作

### 系统要求

Docker CE 支持 64 位版本 CentOS 7并且要求内核版本不低于 3.10CentOS 7 满足最低内核的要求但由于内核版本比较低部分功能 `overlay2` 存储层驱动无法使用并且部分功能可能不太稳定
Docker 支持 64 位版本 CentOS 7并且要求内核版本不低于 3.10CentOS 7 满足最低内核的要求但由于内核版本比较低部分功能 `overlay2` 存储层驱动无法使用并且部分功能可能不太稳定

### 卸载旧版本

Expand All @@ -30,9 +30,7 @@ $ sudo yum remove docker \
执行以下命令安装依赖包

```bash
$ sudo yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
$ sudo yum install -y yum-utils
```
鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。
Expand All @@ -52,19 +50,18 @@ $ sudo sed -i 's/download.docker.com/mirrors.ustc.edu.cn\/docker-ce/g' /etc/yum.
# https://download.docker.com/linux/centos/docker-ce.repo
```

如果需要测试版本的 Docker CE 请使用以下命令
如果需要测试版本的 Docker 请使用以下命令

```bash
$ sudo yum-config-manager --enable docker-ce-test
```

### 安装 Docker CE
### 安装 Docker

更新 `yum` 软件源缓存并安装 `docker-ce`

```bash
$ sudo yum makecache fast
$ sudo yum install docker-ce
$ sudo yum install docker-ce docker-ce-cli containerd.io
```

## 使用脚本自动安装
Expand All @@ -77,9 +74,9 @@ $ sudo sh get-docker.sh --mirror Aliyun
# $ sudo sh get-docker.sh --mirror AzureChinaCloud
```

执行这个命令后脚本就会自动的将一切准备工作做好并且把 Docker CE 的稳定(stable)版本安装在系统中
执行这个命令后脚本就会自动的将一切准备工作做好并且把 Docker 的稳定(stable)版本安装在系统中

## 启动 Docker CE
## 启动 Docker

```bash
$ sudo systemctl enable docker
Expand Down Expand Up @@ -145,7 +142,7 @@ For more examples and ideas, visit:
## 添加内核参数
如果在 CentOS 使用 Docker CE 看到下面的这些警告信息:
如果在 CentOS 使用 Docker 看到下面的这些警告信息:
```bash
WARNING: bridge-nf-call-iptables is disabled
Expand Down
6 changes: 3 additions & 3 deletions install/centos8.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# CentOS8 安装 Docker CE
# CentOS8 安装 Docker

当前官方版本的 Docker CE [尚未支持][docker-docker] CentOS8我们可以使用 Moby 项目维护者 AkihiroSuda 所构建的包具体请参考 https://github.com/AkihiroSuda/moby-snapshot
当前官方版本的 Docker [尚未支持][docker-docker] CentOS8我们可以使用 Moby 项目维护者 AkihiroSuda 所构建的包具体请参考 https://github.com/AkihiroSuda/moby-snapshot

[docker-docker]:https://download.docker.com/linux/centos/

## 设置

由于 CentOS8 防火墙使用了 `nftables` Docker CE 尚未支持 `nftables`我们可以使用如下设置使用 `iptables`
由于 CentOS8 防火墙使用了 `nftables` Docker 尚未支持 `nftables`我们可以使用如下设置使用 `iptables`

更改 `/etc/firewalld/firewalld.conf`

Expand Down
18 changes: 9 additions & 9 deletions install/debian.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Debian 安装 Docker CE
# Debian 安装 Docker

>警告切勿在没有配置 Docker APT 源的情况下直接使用 apt 命令安装 Docker.

## 准备工作

### 系统要求

Docker CE 支持以下版本的 [Debian](https://www.debian.org/intro/about) 操作系统:
Docker 支持以下版本的 [Debian](https://www.debian.org/intro/about) 操作系统:

* Buster 10
* Stretch 9
Expand All @@ -32,7 +32,7 @@ $ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
gnupg-agent \
lsb-release \
software-properties-common
```
Expand All @@ -49,7 +49,7 @@ $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/debian/gpg | sudo apt-k
# $ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
```
然后,我们需要向 `sources.list` 中添加 Docker CE 软件源:
然后,我们需要向 `sources.list` 中添加 Docker 软件源:
```bash
$ sudo add-apt-repository \
Expand All @@ -64,16 +64,16 @@ $ sudo add-apt-repository \
# stable"
```
>以上命令会添加稳定版本的 Docker CE APT 源,如果需要测试版本的 Docker CE 请将 stable 改为 test。
>以上命令会添加稳定版本的 Docker APT 源,如果需要测试版本的 Docker 请将 stable 改为 test。
### 安装 Docker CE
### 安装 Docker
更新 apt 软件包缓存,并安装 `docker-ce`。
```bash
$ sudo apt-get update
$ sudo apt-get install docker-ce
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
```
## 使用脚本自动安装
Expand All @@ -86,9 +86,9 @@ $ sudo sh get-docker.sh --mirror Aliyun
# $ sudo sh get-docker.sh --mirror AzureChinaCloud
```
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker CE 的稳定(stable)版本安装在系统中。
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker 的稳定(stable)版本安装在系统中。
## 启动 Docker CE
## 启动 Docker
```bash
$ sudo systemctl enable docker
Expand Down
16 changes: 8 additions & 8 deletions install/fedora.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Fedora 安装 Docker CE
# Fedora 安装 Docker

>警告切勿在没有配置 Docker dnf 源的情况下直接使用 dnf 命令安装 Docker.

## 准备工作

### 系统要求

Docker CE 支持以下版本的 [Fedora](https://getfedora.org/) 操作系统:
Docker 支持以下版本的 [Fedora](https://getfedora.org/) 操作系统:

* 30
* 31
Expand Down Expand Up @@ -53,25 +53,25 @@ $ sudo sed -i 's/download.docker.com/mirrors.ustc.edu.cn\/docker-ce/g' /etc/yum.
# https://download.docker.com/linux/fedora/docker-ce.repo
```
如果需要测试版本的 Docker CE 请使用以下命令:
如果需要测试版本的 Docker 请使用以下命令:
```bash
$ sudo dnf config-manager --set-enabled docker-ce-test
```
你也可以禁用测试版本的 Docker CE
你也可以禁用测试版本的 Docker
```bash
$ sudo dnf config-manager --set-disabled docker-ce-test
```
### 安装 Docker CE
### 安装 Docker
更新 `dnf` 软件源缓存,并安装 `docker-ce`。
```bash
$ sudo dnf update
$ sudo dnf install docker-ce
$ sudo dnf install docker-ce docker-ce-cli containerd.io
```
你也可以使用以下命令安装指定版本的 Docker
Expand Down Expand Up @@ -100,9 +100,9 @@ $ sudo sh get-docker.sh --mirror Aliyun
# $ sudo sh get-docker.sh --mirror AzureChinaCloud
```
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker CE 最新稳定(stable)版本安装在系统中。
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker 最新稳定(stable)版本安装在系统中。
## 启动 Docker CE
## 启动 Docker
```bash
$ sudo systemctl enable docker
Expand Down
2 changes: 1 addition & 1 deletion install/mac.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# macOS 安装 Docker Desktop CE
# macOS 安装 Docker

## 系统要求

Expand Down
16 changes: 8 additions & 8 deletions install/raspberry-pi.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# 树莓派卡片电脑安装 Docker CE
# 树莓派卡片电脑安装 Docker

>警告切勿在没有配置 Docker APT 源的情况下直接使用 apt 命令安装 Docker.

## 系统要求

Docker CE 不仅支持 `x86_64` 架构的计算机同时也支持 `ARM` 架构的计算机本小节内容以树莓派单片电脑为例讲解 `ARM` 架构安装 Docker CE
Docker 不仅支持 `x86_64` 架构的计算机同时也支持 `ARM` 架构的计算机本小节内容以树莓派单片电脑为例讲解 `ARM` 架构安装 Docker

Docker CE 支持以下版本的 [Raspberry Pi OS](https://www.raspberrypi.org/downloads/raspberry-pi-os/) 操作系统:
Docker 支持以下版本的 [Raspberry Pi OS](https://www.raspberrypi.org/downloads/raspberry-pi-os/) 操作系统:

* Raspberry Pi OS Buster

Expand Down Expand Up @@ -40,7 +40,7 @@ $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/raspbian/gpg | sudo apt
# $ curl -fsSL https://download.docker.com/linux/raspbian/gpg | sudo apt-key add -
```
然后,我们需要向 `sources.list` 中添加 Docker CE 软件源:
然后,我们需要向 `sources.list` 中添加 Docker 软件源:
```bash
$ sudo add-apt-repository \
Expand All @@ -56,9 +56,9 @@ $ sudo add-apt-repository \
# stable"
```
>以上命令会添加稳定版本的 Docker CE APT 源,如果需要测试版本的 Docker CE 请将 stable 改为 test。
>以上命令会添加稳定版本的 Docker APT 源,如果需要测试版本的 Docker 请将 stable 改为 test。
### 安装 Docker CE
### 安装 Docker
更新 apt 软件包缓存,并安装 `docker-ce`。
Expand All @@ -78,9 +78,9 @@ $ sudo sh get-docker.sh --mirror Aliyun
# $ sudo sh get-docker.sh --mirror AzureChinaCloud
```
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker CE 的稳定(stable)版本安装在系统中。
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker 的稳定(stable)版本安装在系统中。
## 启动 Docker CE
## 启动 Docker
```bash
$ sudo systemctl enable docker
Expand Down
17 changes: 9 additions & 8 deletions install/ubuntu.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Ubuntu 安装 Docker CE
# Ubuntu 安装 Docker

>警告切勿在没有配置 Docker APT 源的情况下直接使用 apt 命令安装 Docker.

## 准备工作

### 系统要求

Docker CE 支持以下版本的 [Ubuntu](https://ubuntu.com/server) 操作系统:
Docker 支持以下版本的 [Ubuntu](https://ubuntu.com/server) 操作系统:

* Ubuntu Focal 20.04 (LTS)
* Bionic 18.04 (LTS)
* Xenial 16.04 (LTS)

Docker CE 可以安装在 64 位的 x86 平台或 ARM 平台上Ubuntu 发行版中LTSLong-Term-Support长期支持版本会获得 5 年的升级维护支持这样的版本会更稳定因此在生产环境中推荐使用 LTS 版本
Docker 可以安装在 64 位的 x86 平台或 ARM 平台上Ubuntu 发行版中LTSLong-Term-Support长期支持版本会获得 5 年的升级维护支持这样的版本会更稳定因此在生产环境中推荐使用 LTS 版本

### 卸载旧版本

Expand All @@ -35,6 +35,7 @@ $ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
```
Expand Down Expand Up @@ -66,16 +67,16 @@ $ sudo add-apt-repository \
# stable"
```
>以上命令会添加稳定版本的 Docker CE APT 镜像源,如果需要测试版本的 Docker CE 请将 stable 改为 test。
>以上命令会添加稳定版本的 Docker APT 镜像源,如果需要测试版本的 Docker 请将 stable 改为 test。
### 安装 Docker CE
### 安装 Docker
更新 apt 软件包缓存,并安装 `docker-ce`:
```bash
$ sudo apt-get update
$ sudo apt-get install docker-ce
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
```
## 使用脚本自动安装
Expand All @@ -88,9 +89,9 @@ $ sudo sh get-docker.sh --mirror Aliyun
# $ sudo sh get-docker.sh --mirror AzureChinaCloud
```
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker CE 的稳定(stable)版本安装在系统中。
执行这个命令后,脚本就会自动的将一切准备工作做好,并且把 Docker 的稳定(stable)版本安装在系统中。
## 启动 Docker CE
## 启动 Docker
```bash
$ sudo systemctl enable docker
Expand Down
6 changes: 3 additions & 3 deletions install/windows.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Windows 10 安装 Docker Desktop CE
# Windows 10 安装 Docker

## 系统要求

Expand Down Expand Up @@ -28,11 +28,11 @@ $ winget install Docker.DockerDesktopEdge

![](_images/install-win-docker-app-search.png)

Docker CE 启动之后会在 Windows 任务栏出现鲸鱼图标。
Docker 启动之后会在 Windows 任务栏出现鲸鱼图标。

![](_images/install-win-taskbar-circle.png)

等待片刻,点击 Got it 开始使用 Docker CE
等待片刻,点击 Got it 开始使用 Docker。

![](_images/install-win-success-popup-cloud.png)

Expand Down
8 changes: 4 additions & 4 deletions underly/ufs.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Docker 目前支持的联合文件系统包括 `OverlayFS`, `AUFS`, `Btrfs`, `VF

|Linux 发行版 | Docker 推荐使用的存储驱动 |
| :-- | :-- |
|Docker CE on Ubuntu | `overlay2` (16.04 +) |
|Docker CE on Debian | `overlay2` (Debian Stretch), `aufs`, `devicemapper` |
|Docker CE on CentOS | `overlay2` |
|Docker CE on Fedora | `overlay2` |
|Docker on Ubuntu | `overlay2` (16.04 +) |
|Docker on Debian | `overlay2` (Debian Stretch), `aufs`, `devicemapper` |
|Docker on CentOS | `overlay2` |
|Docker on Fedora | `overlay2` |

在可能的情况下,[推荐](https://docs.docker.com/storage/storagedriver/select-storage-driver/) 使用 `overlay2` 存储驱动,`overlay2` 是目前 Docker 默认的存储驱动,以前则是 `aufs`。你可以通过配置来使用以上提到的其他类型的存储驱动。

0 comments on commit 4751e59

Please sign in to comment.