File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 9898 ### 🐳 快速部署
9999
100100 ```bash
101- # 使用 Docker Hub 镜像部署
101+ # 使用 Docker Hub 镜像部署 ETL 服务
102+ cd sources/gc-qa-rag-etl/deploy
103+ # 编辑 docker-compose.dockerhub.yml 文件,取消环境变量注释并填入你的API密钥
104+ # 启动 ETL 服务
105+ docker compose -f docker-compose.dockerhub.yml up -d
106+
107+ # 使用 Docker Hub 镜像部署 RAG 服务
102108 cd sources/gc-qa-rag-server/deploy
109+ # 编辑 docker-compose.dockerhub.yml 文件,取消环境变量注释并填入你的API密钥
110+ # 启动 RAG 服务
103111 docker compose -f docker-compose.dockerhub.yml up -d
104112 ```
105113
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ GC-QA-RAG 是一个**企业级的检索增强生成(RAG)系统**。我们通
8888git clone https://github.com/GrapeCity-AI/gc-qa-rag.git
8989cd gc-qa-rag
9090
91- # 2. 编辑 ETL 配置
91+ # 2. 编辑 ETL 配置(也可在部署后的Web端界面修改配置)
9292cd sources/gc-qa-rag-etl/deploy
9393# 编辑 docker-compose.dockerhub.yml,取消注释并填入你的API密钥:
9494# GC_QA_RAG_LLM_API_KEY: "your_llm_api_key_here"
@@ -128,7 +128,7 @@ docker compose up -d --build
128128# 5. 进入 RAG 目录
129129cd sources/gc-qa-rag-server/deploy
130130
131- # 6. 构建 RAG 服务镜像 ,并启动服务
131+ # 6. 构建 RAG 镜像 ,并启动服务
132132docker compose up -d --build
133133```
134134
You can’t perform that action at this time.
0 commit comments