新增支持部分云计算厂商开源镜像站内网地址

This commit is contained in:
Super Manito
2022-03-17 21:34:57 +08:00
parent 542ef0e179
commit 38283a8196
8 changed files with 152 additions and 100 deletions

View File

@@ -103,26 +103,27 @@
```
> `Docker CE`Docker Community Edition 镜像仓库,用于下载并安装 Docker 相关软件包。\
> `Docker Hub`Docker Hub 镜像仓库,默认为官方提供的公共库,用于切换下载镜像时的来源仓库,称镜像加速器。
> `Docker Hub`Docker Hub 镜像仓库,默认为官方提供的公共库,用于切换下载镜像时的来源仓库,称镜像加速器。
> _注意脚本集成安装 `Docker Engine`与 `Docker Compose`,可手动选择安装版本和下载源,还可手动选择镜像加速器,支持国内外服务器环境和 `ARM`架构处理器环境使用。_
***
### 常见问题与帮助
- 如果提示 `Command 'curl' not found` 则说明当前未安装 `curl` 软件包
- 如果提示 `Command 'curl' not found` 则说明当前未安装 `curl` 软件包
```bash
sudo yum install -y curl || sudo apt install -y curl
sudo yum install -y curl || sudo apt-get install -y curl
```
- 如果提示 `Command 'wget' not found` 则说明当前未安装 `wget` 软件包
- 如果提示 `Command 'wget' not found` 则说明当前未安装 `wget` 软件包
```bash
sudo yum install -y wget || sudo apt install -y wget
sudo yum install -y wget || sudo apt-get install -y wget
```
- 如果提示 `bash: /proc/self/fd/11: No such file or directory`,请切换至 `Root` 用户执行
- 如果提示 `bash: /proc/self/fd/11: No such file or directory`,请切换至 `Root` 用户执行
***