mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-02-09 14:34:59 +00:00
15 lines
250 B
Markdown
15 lines
250 B
Markdown
### docker-compose 部署教程
|
|
- 将打包好的前端文件放到 `nginx/html` 目录下
|
|
- ```shell
|
|
# 启动
|
|
docker-compose up -d
|
|
```
|
|
- ```shell
|
|
# 查看运行状态
|
|
docker ps
|
|
```
|
|
- ```shell
|
|
# 结束运行
|
|
docker-compose down
|
|
```
|