From 250119e03ab7a597eb2044baf7d89bb99b13b3f3 Mon Sep 17 00:00:00 2001 From: Camus Gao Date: Tue, 21 May 2024 14:26:43 +0800 Subject: [PATCH] Fix missing docker image version prefix v. (#855) The variable RAGFLOW_VERSION in docker/.env should start with prefix v to match docker image tag. ### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- docker/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/.env b/docker/.env index 6186ecb28..89149d380 100644 --- a/docker/.env +++ b/docker/.env @@ -29,7 +29,7 @@ REDIS_PASSWORD=infini_rag_flow SVR_HTTP_PORT=9380 -RAGFLOW_VERSION=0.6.0 +RAGFLOW_VERSION=v0.6.0 TIMEZONE='Asia/Shanghai'