From 0553691b724bee2e26989c3aaff2bb0a1b8f57be Mon Sep 17 00:00:00 2001 From: xubiaolin Date: Sat, 9 Sep 2023 14:54:05 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20=E4=BF=AE=E6=94=B9readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 21 +++++++++++++++++---- deploy.sh | 1 + 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 37192fa..458c426 100644 --- a/README.md +++ b/README.md @@ -54,10 +54,23 @@ Zerotier 在多设备之间建立了一个 `Peer to Peer VPN(P2PVPN)` 连接 # 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 { diff --git a/deploy.sh b/deploy.sh index d7f5b58..132c0fb 100755 --- a/deploy.sh +++ b/deploy.sh @@ -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