build(version): 更新项目版本至 0.4.2

- 更新 README.md 和 README_EN.md 中的版本号
- 更新 Docker 镜像构建命令和标签
- 更新 .env 文件中的镜像版本
- 移除 docker-compose 文件中的挂载路径
- 更新管理前端和后端的 Docker 镜像版本
This commit is contained in:
zstar 2025-06-10 16:14:21 +08:00
parent b8b4b441d2
commit f1b097d9df
7 changed files with 14 additions and 20 deletions

View File

@ -3,7 +3,7 @@
</div>
<div align="center">
<img src="https://img.shields.io/badge/版本-0.4.1-blue" alt="版本">
<img src="https://img.shields.io/badge/版本-0.4.2-blue" alt="版本">
<a href="LICENSE"><img src="https://img.shields.io/badge/许可证-AGPL3.0-green" alt="许可证"></a>
<h4>
<a href="README.md">🇨🇳 中文</a>

View File

@ -3,7 +3,7 @@
</div>
<div align="center">
<img src="https://img.shields.io/badge/version-0.4.1-blue" alt="Version">
<img src="https://img.shields.io/badge/version-0.4.2-blue" alt="Version">
<a href="LICENSE"><img src="https://img.shields.io/badge/license-AGPL3.0-green" alt="License"></a>
<h4>
<a href="README.md">🇨🇳 Chinese</a>

View File

@ -1,13 +1,13 @@
docker 镜像相关命令:
前台镜像构建相关:
docker build -t zstar1003/ragflowplus:v0.4.1 .
docker tag zstar1003/ragflowplus:v0.4.1 zstar1003/ragflowplus:v0.4.1
docker push zstar1003/ragflowplus:v0.4.1
docker build -t zstar1003/ragflowplus:v0.4.2 .
docker tag zstar1003/ragflowplus:v0.4.2 zstar1003/ragflowplus:v0.4.2
docker push zstar1003/ragflowplus:v0.4.2
后台镜像构建相关:
cd management
docker-compose build
docker tag zstar1003/ragflowplus-management-web:v0.4.1 zstar1003/ragflowplus-management-web:v0.4.1
docker tag zstar1003/ragflowplus-management-server:v0.4.1 zstar1003/ragflowplus-management-server:v0.4.1
docker push zstar1003/ragflowplus-management-web:v0.4.1
docker push zstar1003/ragflowplus-management-server:v0.4.1
docker tag zstar1003/ragflowplus-management-web:v0.4.2 zstar1003/ragflowplus-management-web:v0.4.2
docker tag zstar1003/ragflowplus-management-server:v0.4.2 zstar1003/ragflowplus-management-server:v0.4.2
docker push zstar1003/ragflowplus-management-web:v0.4.2
docker push zstar1003/ragflowplus-management-server:v0.4.2

View File

@ -76,9 +76,9 @@ REDIS_PASSWORD=infini_rag_flow
SVR_HTTP_PORT=9380
# RAGFLOW_IMAGE原始为infiniflow/ragflow:v0.18.0-slim
RAGFLOW_IMAGE=zstar1003/ragflowplus:v0.4.1
RAGFLOWPLUS_MANAGEMENT_WEB_IMAGE=zstar1003/ragflowplus-management-web:v0.4.1
RAGFLOWPLUS_MANAGEMENT_SERVER_IMAGE=zstar1003/ragflowplus-management-server:v0.4.1
RAGFLOW_IMAGE=zstar1003/ragflowplus:v0.4.2
RAGFLOWPLUS_MANAGEMENT_WEB_IMAGE=zstar1003/ragflowplus-management-web:v0.4.2
RAGFLOWPLUS_MANAGEMENT_SERVER_IMAGE=zstar1003/ragflowplus-management-server:v0.4.2
# The local time zone.
TIMEZONE='Asia/Shanghai'

View File

@ -17,10 +17,6 @@ services:
- ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
- ./nginx/proxy.conf:/etc/nginx/proxy.conf
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ../api/db/services/database.py:/ragflow/api/db/services/database.py
- ../api/db/services/dialog_service.py:/ragflow/api/db/services/dialog_service.py
- ../api/ragflow_server.py:/ragflow/api/ragflow_server.py
- ../api/root_path.py:/ragflow/api/root_path.py
env_file: .env
environment:
- TZ=${TIMEZONE}

View File

@ -17,8 +17,6 @@ services:
- ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
- ./nginx/proxy.conf:/etc/nginx/proxy.conf
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ../api/db/services/database.py:/ragflow/api/db/services/database.py
- ../api/db/services/dialog_service.py:/ragflow/api/db/services/dialog_service.py
env_file: .env
environment:
- TZ=${TIMEZONE}

View File

@ -1,7 +1,7 @@
services:
management-frontend:
container_name: ragflowplus-management-frontend
image: zstar1003/ragflowplus-management-web:v0.4.1
image: zstar1003/ragflowplus-management-web:v0.4.2
build:
context: .
dockerfile: Dockerfile
@ -17,7 +17,7 @@ services:
management-backend:
container_name: ragflowplus-management-backend
image: zstar1003/ragflowplus-management-server:v0.4.1
image: zstar1003/ragflowplus-management-server:v0.4.2
build:
context: .
dockerfile: Dockerfile