Update the deployment tutorial.

This commit is contained in:
dqzboy
2024-07-25 22:21:29 +08:00
parent 803f718d51
commit 19736964d8
2 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/dqzboy/Docker-Proxy/install/Do
**2.** 下载[docker-compose.yaml](https://github.com/dqzboy/Docker-Proxy/blob/main/docker-compose.yaml)文件到你本地机器上,并且与配置文件同级目录下
**3.** 执行 `docker compose` 命令启动容器服务
**3.** 执行 `docker compose``docker-compose` 命令启动容器服务
```shell
docker compose up -d
+14
View File
@@ -67,6 +67,20 @@ docker pull dqzboy/hubcmd-ui:latest
docker run -d -p 3000:3000 --name hubcmdui-server hubcmd-ui
```
## Docker Compose 部署
#### 1. 下载 [docker-compose.yaml](https://raw.githubusercontent.com/dqzboy/Docker-Proxy/main/hubcmdui/docker-compose.yaml) 文件到你本地机器上
#### 2. 执行 `docker compose` 或 `docker-compose` 命令启动容器服务
```shell
docker compose up -d
# 查看容器日志
docker logs -f [容器ID或名称]
```
---
## UI