mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-28 09:18:54 +00:00
[install] use aliyun mirror
Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
This commit is contained in:
parent
7b5a21bf6d
commit
2b7f954c65
1
.github/workflows/check-link.yml
vendored
1
.github/workflows/check-link.yml
vendored
@ -37,7 +37,6 @@ jobs:
|
|||||||
"nodejs.org/dist/",\
|
"nodejs.org/dist/",\
|
||||||
"c.163.com/hub",\
|
"c.163.com/hub",\
|
||||||
"drone.yeasy.com",\
|
"drone.yeasy.com",\
|
||||||
"mirrors.ustc.edu.cn",\
|
|
||||||
"docs.docker.com",\
|
"docs.docker.com",\
|
||||||
"dockerhub.azk8s.cn",\
|
"dockerhub.azk8s.cn",\
|
||||||
"reg-mirror.qiniu.com",\
|
"reg-mirror.qiniu.com",\
|
||||||
|
@ -40,9 +40,9 @@ $ sudo yum install -y yum-utils
|
|||||||
```bash
|
```bash
|
||||||
$ sudo yum-config-manager \
|
$ sudo yum-config-manager \
|
||||||
--add-repo \
|
--add-repo \
|
||||||
https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo
|
https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
|
||||||
|
|
||||||
$ sudo sed -i 's/download.docker.com/mirrors.ustc.edu.cn\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo
|
$ sudo sed -i 's/download.docker.com/mirrors.aliyun.com\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
# $ sudo yum-config-manager \
|
# $ sudo yum-config-manager \
|
||||||
|
@ -42,7 +42,7 @@ $ sudo apt-get install \
|
|||||||
为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。
|
为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add -
|
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/debian/gpg | sudo apt-key add -
|
||||||
|
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
@ -51,11 +51,11 @@ $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/debian/gpg | sudo apt-k
|
|||||||
|
|
||||||
然后,我们需要向 `sources.list` 中添加 Docker 软件源:
|
然后,我们需要向 `sources.list` 中添加 Docker 软件源:
|
||||||
|
|
||||||
> 在一些基于 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.ustc.edu.cn/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 \
|
$ sudo add-apt-repository \
|
||||||
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/debian \
|
"deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/debian \
|
||||||
$(lsb_release -cs) \
|
$(lsb_release -cs) \
|
||||||
stable"
|
stable"
|
||||||
|
|
||||||
|
@ -44,9 +44,9 @@ $ sudo dnf -y install dnf-plugins-core
|
|||||||
```bash
|
```bash
|
||||||
$ sudo dnf config-manager \
|
$ sudo dnf config-manager \
|
||||||
--add-repo \
|
--add-repo \
|
||||||
https://mirrors.ustc.edu.cn/docker-ce/linux/fedora/docker-ce.repo
|
https://mirrors.aliyun.com/docker-ce/linux/fedora/docker-ce.repo
|
||||||
|
|
||||||
$ sudo sed -i 's/download.docker.com/mirrors.ustc.edu.cn\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo
|
$ sudo sed -i 's/download.docker.com/mirrors.aliyun.com\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
# $ sudo dnf config-manager \
|
# $ sudo dnf config-manager \
|
||||||
|
@ -33,7 +33,7 @@ $ sudo apt-get install \
|
|||||||
为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。
|
为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/raspbian/gpg | sudo apt-key add -
|
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/raspbian/gpg | sudo apt-key add -
|
||||||
|
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
@ -44,7 +44,7 @@ $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/raspbian/gpg | sudo apt
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo add-apt-repository \
|
$ sudo add-apt-repository \
|
||||||
"deb [arch=armhf] https://mirrors.ustc.edu.cn/docker-ce/linux/raspbian \
|
"deb [arch=armhf] https://mirrors.aliyun.com/docker-ce/linux/raspbian \
|
||||||
$(lsb_release -cs) \
|
$(lsb_release -cs) \
|
||||||
stable"
|
stable"
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ $ sudo apt-get install \
|
|||||||
为了确认所下载软件包的合法性,需要添加软件源的 `GPG` 密钥。
|
为了确认所下载软件包的合法性,需要添加软件源的 `GPG` 密钥。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
|
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
|
||||||
|
|
||||||
|
|
||||||
# 官方源
|
# 官方源
|
||||||
@ -55,7 +55,7 @@ $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-k
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo add-apt-repository \
|
$ sudo add-apt-repository \
|
||||||
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
|
"deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
|
||||||
$(lsb_release -cs) \
|
$(lsb_release -cs) \
|
||||||
stable"
|
stable"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# 部署 Kubernetes
|
# 部署 Kubernetes
|
||||||
|
|
||||||
目前,Kubernetes 支持在多种环境下使用,包括本地主机(Fedora)、云服务(Google GAE、AWS 等)。
|
目前,Kubernetes 支持在多种环境下使用,包括本地主机(Ubuntu、Debian、Fedora 等)、云服务([腾讯云](https://cloud.tencent.com/act/cps/redirect?redirect=10058&cps_key=3a5255852d5db99dcd5da4c72f05df61)、[阿里云](https://www.aliyun.com/product/kubernetes?source=5176.11533457&userCode=8lx5zmtu&type=copy)、[百度云](https://cloud.baidu.com/product/cce.html) 等)。
|
||||||
|
|
||||||
你可以使用以下几种方式部署 Kubernetes:
|
你可以使用以下几种方式部署 Kubernetes:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user