Skip to content

Commit 39dc734

Browse files
committed
docs: Clarify ETL and RAG service deployment instructions in README and GitHub Actions workflow
1 parent 15473ec commit 39dc734

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/publish-dockerhub.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,16 @@ jobs:
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ GC-QA-RAG 是一个**企业级的检索增强生成(RAG)系统**。我们通
8888
git clone https://github.com/GrapeCity-AI/gc-qa-rag.git
8989
cd gc-qa-rag
9090

91-
# 2. 编辑 ETL 配置
91+
# 2. 编辑 ETL 配置(也可在部署后的Web端界面修改配置)
9292
cd 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 目录
129129
cd sources/gc-qa-rag-server/deploy
130130

131-
# 6. 构建 RAG 服务镜像,并启动服务
131+
# 6. 构建 RAG 镜像,并启动服务
132132
docker compose up -d --build
133133
```
134134

0 commit comments

Comments
 (0)