Fix missing docker image version prefix v. (#855)
Browse filesThe 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 +1 -1
docker/.env
CHANGED
|
@@ -29,7 +29,7 @@ REDIS_PASSWORD=infini_rag_flow
|
|
| 29 |
|
| 30 |
SVR_HTTP_PORT=9380
|
| 31 |
|
| 32 |
-
RAGFLOW_VERSION=
|
| 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 |
|