Commit 764765c6 authored by xiezhi's avatar xiezhi

fix

parent 09766d68
...@@ -210,26 +210,26 @@ make run ...@@ -210,26 +210,26 @@ make run
### 常见问题 ### 常见问题
1. **端口被占用** 1. **端口被占用**
```bash ```bash
# 查看端口占用 # 查看端口占用
lsof -i :8000 lsof -i :8000
# 停止占用端口的进程 # 停止占用端口的进程
make stop make stop
``` ```
2. **编译错误** 2. **编译错误**
```bash ```bash
# 清理并重新编译 # 清理并重新编译
make clean make clean
make install make install
``` ```
3. **Docker 构建失败** 3. **Docker 构建失败**
```bash ```bash
# 检查 Dockerfile 语法 # 检查 Dockerfile 语法
docker build --no-cache -t test . docker build --no-cache -t test .
``` ```
### 调试模式 ### 调试模式
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment