mirror of
https://github.com/xubiaolin/docker-zerotier-planet.git
synced 2025-01-22 12:48:14 -05:00
feat: 🎸 修改readme
This commit is contained in:
parent
9f41401c0f
commit
0553691b72
21
README.md
21
README.md
@ -54,10 +54,23 @@ Zerotier 在多设备之间建立了一个 `Peer to Peer VPN(P2PVPN)` 连接
|
|||||||
|
|
||||||
# 3:开始安装
|
# 3:开始安装
|
||||||
## 3.1:准备条件
|
## 3.1:准备条件
|
||||||
- 具有公网 `ip` 的服务器(需要开放 3443/tcp 端口,9993/tcp 端口,9993/udp 端口)
|
- 具有公网 `ip` 的服务器(需要开放 3443/tcp 端口,9993/tcp 端口,9993/udp 端口)[这里的9993需要你根据实际情况替换]
|
||||||
- 安装 `docker`
|
- 安装 `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:下载项目源码
|
## 3.2:下载项目源码
|
||||||
```
|
```
|
||||||
@ -204,7 +217,7 @@ PS C:\Windows\system32>
|
|||||||
管理面板的SSL支持需要自行配置,参考Nginx配置如下:
|
管理面板的SSL支持需要自行配置,参考Nginx配置如下:
|
||||||
```
|
```
|
||||||
upstream zerotier {
|
upstream zerotier {
|
||||||
server 127.0.0.1: 3443;
|
server 127.0.0.1:3443;
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
|
@ -57,6 +57,7 @@ function install() {
|
|||||||
docker build --no-cache --build-arg ZT_PORT=$port --network host -t $imageName .
|
docker build --no-cache --build-arg ZT_PORT=$port --network host -t $imageName .
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "镜像打包失败,请重试"
|
echo "镜像打包失败,请重试"
|
||||||
|
echo "国内机器打包容易失败,请多试几次"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user