mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-28 09:18:54 +00:00
Update install
Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
This commit is contained in:
parent
6f810c89f3
commit
7afb8991d3
@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
Docker 支持以下版本的 [Debian](https://www.debian.org/intro/about) 操作系统:
|
Docker 支持以下版本的 [Debian](https://www.debian.org/intro/about) 操作系统:
|
||||||
|
|
||||||
* Buster 10
|
* Debian Buster 10
|
||||||
* Stretch 9
|
* Debian Stretch 9
|
||||||
|
|
||||||
### 卸载旧版本
|
### 卸载旧版本
|
||||||
|
|
||||||
@ -32,9 +32,8 @@ $ sudo apt-get install \
|
|||||||
apt-transport-https \
|
apt-transport-https \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
curl \
|
curl \
|
||||||
gnupg-agent \
|
gnupg \
|
||||||
lsb-release \
|
lsb-release
|
||||||
software-properties-common
|
|
||||||
```
|
```
|
||||||
|
|
||||||
鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。
|
鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。
|
||||||
@ -42,11 +41,11 @@ $ sudo apt-get install \
|
|||||||
为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。
|
为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/debian/gpg | sudo apt-key add -
|
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
||||||
|
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
# $ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
|
# $ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
||||||
```
|
```
|
||||||
|
|
||||||
然后,我们需要向 `sources.list` 中添加 Docker 软件源:
|
然后,我们需要向 `sources.list` 中添加 Docker 软件源:
|
||||||
@ -54,16 +53,16 @@ $ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/debian/gpg | sudo apt-ke
|
|||||||
> 在一些基于 Debian 的 Linux 发行版中 `$(lsb_release -cs)` 可能不会返回 Debian 的版本代号,例如 [Kail Linux](https://www.kali.org/docs/policy/kali-linux-relationship-with-debian/)、 [BunsenLabs Linux](https://www.bunsenlabs.org/)。在这些发行版中我们需要将下面命令中的 `$(lsb_release -cs)` 替换为 https://mirrors.aliyun.com/docker-ce/linux/debian/dists/ 中支持的 Debian 版本代号,例如 `buster`。
|
> 在一些基于 Debian 的 Linux 发行版中 `$(lsb_release -cs)` 可能不会返回 Debian 的版本代号,例如 [Kail Linux](https://www.kali.org/docs/policy/kali-linux-relationship-with-debian/)、 [BunsenLabs Linux](https://www.bunsenlabs.org/)。在这些发行版中我们需要将下面命令中的 `$(lsb_release -cs)` 替换为 https://mirrors.aliyun.com/docker-ce/linux/debian/dists/ 中支持的 Debian 版本代号,例如 `buster`。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo add-apt-repository \
|
$ echo \
|
||||||
"deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/debian \
|
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://mirrors.aliyun.com/docker-ce/linux/debian \
|
||||||
$(lsb_release -cs) \
|
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
stable"
|
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
# $ sudo add-apt-repository \
|
# $ echo \
|
||||||
# "deb [arch=amd64] https://download.docker.com/linux/debian \
|
# "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://https://download.docker.com/linux/debian \
|
||||||
# $(lsb_release -cs) \
|
# $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
# stable"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
>以上命令会添加稳定版本的 Docker APT 源,如果需要测试版本的 Docker 请将 stable 改为 test。
|
>以上命令会添加稳定版本的 Docker APT 源,如果需要测试版本的 Docker 请将 stable 改为 test。
|
||||||
|
@ -8,9 +8,10 @@
|
|||||||
|
|
||||||
Docker 支持以下版本的 [Ubuntu](https://ubuntu.com/server) 操作系统:
|
Docker 支持以下版本的 [Ubuntu](https://ubuntu.com/server) 操作系统:
|
||||||
|
|
||||||
* Focal 20.04 (LTS)
|
* Ubuntu Groovy 20.10
|
||||||
* Bionic 18.04 (LTS)
|
* Ubuntu Focal 20.04 (LTS)
|
||||||
* Xenial 16.04 (LTS)
|
* Ubuntu Bionic 18.04 (LTS)
|
||||||
|
* Ubuntu Xenial 16.04 (LTS)
|
||||||
|
|
||||||
Docker 可以安装在 64 位的 x86 平台或 ARM 平台上。Ubuntu 发行版中,LTS(Long-Term-Support)长期支持版本,会获得 5 年的升级维护支持,这样的版本会更稳定,因此在生产环境中推荐使用 LTS 版本。
|
Docker 可以安装在 64 位的 x86 平台或 ARM 平台上。Ubuntu 发行版中,LTS(Long-Term-Support)长期支持版本,会获得 5 年的升级维护支持,这样的版本会更稳定,因此在生产环境中推荐使用 LTS 版本。
|
||||||
|
|
||||||
@ -35,8 +36,8 @@ $ sudo apt-get install \
|
|||||||
apt-transport-https \
|
apt-transport-https \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
curl \
|
curl \
|
||||||
gnupg-agent \
|
gnupg \
|
||||||
software-properties-common
|
lsb-release
|
||||||
```
|
```
|
||||||
|
|
||||||
鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。
|
鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。
|
||||||
@ -44,27 +45,25 @@ $ sudo apt-get install \
|
|||||||
为了确认所下载软件包的合法性,需要添加软件源的 `GPG` 密钥。
|
为了确认所下载软件包的合法性,需要添加软件源的 `GPG` 密钥。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
|
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
||||||
|
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
# $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
# $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
||||||
```
|
```
|
||||||
|
|
||||||
然后,我们需要向 `sources.list` 中添加 Docker 软件源
|
然后,我们需要向 `sources.list` 中添加 Docker 软件源
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo add-apt-repository \
|
$ echo \
|
||||||
"deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
|
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
|
||||||
$(lsb_release -cs) \
|
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
stable"
|
|
||||||
|
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
# $ sudo add-apt-repository \
|
# $ echo \
|
||||||
# "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
|
# "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
|
||||||
# $(lsb_release -cs) \
|
# $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
# stable"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
>以上命令会添加稳定版本的 Docker APT 镜像源,如果需要测试版本的 Docker 请将 stable 改为 test。
|
>以上命令会添加稳定版本的 Docker APT 镜像源,如果需要测试版本的 Docker 请将 stable 改为 test。
|
||||||
|
Loading…
Reference in New Issue
Block a user