gggxp commited on
Commit
cbc9d81
·
1 Parent(s): 4b4d845

Fix missing docker image version prefix v. (#855)

Browse files

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)

Files changed (1) hide show
  1. docker/.env +1 -1
docker/.env CHANGED
@@ -29,7 +29,7 @@ REDIS_PASSWORD=infini_rag_flow
29
 
30
  SVR_HTTP_PORT=9380
31
 
32
- RAGFLOW_VERSION=0.6.0
33
 
34
  TIMEZONE='Asia/Shanghai'
35
 
 
29
 
30
  SVR_HTTP_PORT=9380
31
 
32
+ RAGFLOW_VERSION=v0.6.0
33
 
34
  TIMEZONE='Asia/Shanghai'
35