feat: 🎸 修改readme

This commit is contained in:
xubiaolin 2023-09-09 14:54:05 +08:00
parent 9f41401c0f
commit 0553691b72
2 changed files with 18 additions and 4 deletions

View File

@ -54,10 +54,23 @@ Zerotier 在多设备之间建立了一个 `Peer to Peer VPNP2PVPN` 连接
# 3开始安装
## 3.1:准备条件
- 具有公网 `ip` 的服务器(需要开放 3443/tcp 端口9993/tcp 端口9993/udp 端口)
- 安装 `docker`
- 具有公网 `ip` 的服务器(需要开放 3443/tcp 端口9993/tcp 端口9993/udp 端口)[这里的9993需要你根据实际情况替换]
- 安装 `docker`、`git`
### 3.1.1 安装git
```bash
#debian/ubuntu等
apt update && apt install git -y
#centos等
yum update && yum install git -y
```
### 3.1.2 安装docker
```bash
curl -fsSL https://get.docker.com |bash
```
ps:如果是centos安装docker请使用`yum install docker-ce`
## 3.2:下载项目源码
```
@ -204,7 +217,7 @@ PS C:\Windows\system32>
管理面板的SSL支持需要自行配置参考Nginx配置如下
```
upstream zerotier {
server 127.0.0.1: 3443;
server 127.0.0.1:3443;
}
server {

View File

@ -57,6 +57,7 @@ function install() {
docker build --no-cache --build-arg ZT_PORT=$port --network host -t $imageName .
if [ $? -ne 0 ]; then
echo "镜像打包失败,请重试"
echo "国内机器打包容易失败,请多试几次"
exit 1
fi