KevinHuSh
commited on
Commit
·
a1d84c9
1
Parent(s):
e319829
refine document by using latest as version number (#588)
Browse files### What problem does this PR solve?
### Type of change
- [x] Documentation Update
- docker/.env +1 -1
- docs/faq.md +2 -2
docker/.env
CHANGED
@@ -27,7 +27,7 @@ MINIO_PASSWORD=infini_rag_flow
|
|
27 |
|
28 |
SVR_HTTP_PORT=9380
|
29 |
|
30 |
-
RAGFLOW_VERSION=
|
31 |
|
32 |
TIMEZONE='Asia/Shanghai'
|
33 |
|
|
|
27 |
|
28 |
SVR_HTTP_PORT=9380
|
29 |
|
30 |
+
RAGFLOW_VERSION=latest
|
31 |
|
32 |
TIMEZONE='Asia/Shanghai'
|
33 |
|
docs/faq.md
CHANGED
@@ -55,7 +55,7 @@ This feature and the related APIs are still in development. Contributions are we
|
|
55 |
```
|
56 |
$ git clone https://github.com/infiniflow/ragflow.git
|
57 |
$ cd ragflow
|
58 |
-
$ docker build -t infiniflow/ragflow:
|
59 |
$ cd ragflow/docker
|
60 |
$ chmod +x ./entrypoint.sh
|
61 |
$ docker compose up -d
|
@@ -212,7 +212,7 @@ $ docker ps
|
|
212 |
*The system displays the following if all your RAGFlow components are running properly:*
|
213 |
|
214 |
```
|
215 |
-
5bc45806b680 infiniflow/ragflow:
|
216 |
91220e3285dd docker.elastic.co/elasticsearch/elasticsearch:8.11.3 "/bin/tini -- /usr/l…" 11 hours ago Up 11 hours (healthy) 9300/tcp, 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp ragflow-es-01
|
217 |
d8c86f06c56b mysql:5.7.18 "docker-entrypoint.s…" 7 days ago Up 16 seconds (healthy) 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp ragflow-mysql
|
218 |
cd29bcb254bc quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z "/usr/bin/docker-ent…" 2 weeks ago Up 11 hours 0.0.0.0:9001->9001/tcp, :::9001->9001/tcp, 0.0.0.0:9000->9000/tcp, :::9000->9000/tcp ragflow-minio
|
|
|
55 |
```
|
56 |
$ git clone https://github.com/infiniflow/ragflow.git
|
57 |
$ cd ragflow
|
58 |
+
$ docker build -t infiniflow/ragflow:latest .
|
59 |
$ cd ragflow/docker
|
60 |
$ chmod +x ./entrypoint.sh
|
61 |
$ docker compose up -d
|
|
|
212 |
*The system displays the following if all your RAGFlow components are running properly:*
|
213 |
|
214 |
```
|
215 |
+
5bc45806b680 infiniflow/ragflow:latest "./entrypoint.sh" 11 hours ago Up 11 hours 0.0.0.0:80->80/tcp, :::80->80/tcp, 0.0.0.0:443->443/tcp, :::443->443/tcp, 0.0.0.0:9380->9380/tcp, :::9380->9380/tcp ragflow-server
|
216 |
91220e3285dd docker.elastic.co/elasticsearch/elasticsearch:8.11.3 "/bin/tini -- /usr/l…" 11 hours ago Up 11 hours (healthy) 9300/tcp, 0.0.0.0:9200->9200/tcp, :::9200->9200/tcp ragflow-es-01
|
217 |
d8c86f06c56b mysql:5.7.18 "docker-entrypoint.s…" 7 days ago Up 16 seconds (healthy) 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp ragflow-mysql
|
218 |
cd29bcb254bc quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z "/usr/bin/docker-ent…" 2 weeks ago Up 11 hours 0.0.0.0:9001->9001/tcp, :::9001->9001/tcp, 0.0.0.0:9000->9000/tcp, :::9000->9000/tcp ragflow-minio
|