@@ -3,11 +3,11 @@ name: Publish to Docker Hub
3
3
on :
4
4
push :
5
5
tags :
6
- - " v*" # 当推送版本标签时触发
7
- workflow_dispatch : # 允许手动触发
6
+ - " v*" # Trigger when version tags are pushed
7
+ workflow_dispatch : # Allow manual trigger
8
8
inputs :
9
9
version :
10
- description : " 版本号 (例如 : v1.0.0)"
10
+ description : " Version number (e.g. : v1.0.0)"
11
11
required : true
12
12
default : " latest"
13
13
@@ -87,33 +87,33 @@ jobs:
87
87
body : |
88
88
## 🚀 GC-QA-RAG ${{ steps.version.outputs.version }}
89
89
90
- ### 📦 Docker 镜像
90
+ ### 📦 Docker Images
91
91
92
- 本次发布包含以下 Docker 镜像:
92
+ This release includes the following Docker images:
93
93
94
94
- `${{ env.DOCKERHUB_USERNAME }}/${{ env.PROJECT_NAME }}-server:${{ steps.version.outputs.version }}`
95
95
- `${{ env.DOCKERHUB_USERNAME }}/${{ env.PROJECT_NAME }}-etl:${{ steps.version.outputs.version }}`
96
96
- `${{ env.DOCKERHUB_USERNAME }}/${{ env.PROJECT_NAME }}-frontend:${{ steps.version.outputs.version }}`
97
97
98
- ### 🐳 快速部署
98
+ ### 🐳 Quick Deployment
99
99
100
100
```bash
101
- # 使用 Docker Hub 镜像部署 ETL 服务
101
+ # Deploy ETL service using Docker Hub images
102
102
cd sources/gc-qa-rag-etl/deploy
103
- # 编辑 docker-compose.dockerhub.yml 文件,取消环境变量注释并填入你的API密钥
104
- # 启动 ETL 服务
103
+ # Edit docker-compose.dockerhub.yml file, uncomment environment variables and fill in your API keys
104
+ # Start ETL service
105
105
docker compose -f docker-compose.dockerhub.yml up -d
106
106
107
- # 使用 Docker Hub 镜像部署 RAG 服务
107
+ # Deploy RAG service using Docker Hub images
108
108
cd sources/gc-qa-rag-server/deploy
109
- # 编辑 docker-compose.dockerhub.yml 文件,取消环境变量注释并填入你的API密钥
110
- # 启动 RAG 服务
109
+ # Edit docker-compose.dockerhub.yml file, uncomment environment variables and fill in your API keys
110
+ # Start RAG service
111
111
docker compose -f docker-compose.dockerhub.yml up -d
112
112
```
113
113
114
- ### 📚 文档
114
+ ### 📚 Documentation
115
115
116
- - [部署指南 ](https://grapecity-ai.github.io/gc-qa-rag/zh /2-%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B /1-Docker%E9%83%A8%E7%BD%B2 /)
117
- - [项目文档 ](https://grapecity-ai.github.io/gc-qa-rag/)
116
+ - [Deployment Guide ](https://grapecity-ai.github.io/gc-qa-rag/en /2-development-tutorial /1-docker-deployment /)
117
+ - [Project Documentation ](https://grapecity-ai.github.io/gc-qa-rag/en /)
118
118
draft : false
119
119
prerelease : false
0 commit comments