We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70fb686 commit e485a9dCopy full SHA for e485a9d
README.md
@@ -156,11 +156,9 @@ $ ahpc.exe -c client.json
156
157
## 使用Docker
158
```shell
159
-# 使用拉取到本地的源码进行构建
160
-docker build . -t lxrite/azure-http-proxy
161
-# 或者使用URL自动拉取源码构建
162
-docker build -t lxrite/azure-http-proxy https://github.com/lxrite/azure-http-proxy.git
+# 拉取镜像
+docker pull ghcr.io/lxrite/azure-http-proxy:latest
163
164
# 启动 ahps
165
-docker run -d -p 8090:8090 --mount type=bind,source=$PWD/server.json,target=/data/ahp/server.json lxrite/azure-http-proxy ahps -c /data/ahp/server.json
+docker run -d -p 8090:8090 -v $PWD/server.json:/data/ahp/server.json ghcr.io/lxrite/azure-http-proxy ahps -c /data/ahp/server.json
166
```
0 commit comments