From ab22084f80c444d501fa15c42f3d8eceb8a3f6bf Mon Sep 17 00:00:00 2001 From: Florian Date: Fri, 20 Dec 2024 14:47:14 +0800 Subject: [PATCH] docs(graphrag): add oss url for tugraph image --- docs/docs/cookbook/rag/graph_rag_app_develop.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/docs/cookbook/rag/graph_rag_app_develop.md b/docs/docs/cookbook/rag/graph_rag_app_develop.md index 15611fe34..3223c729b 100644 --- a/docs/docs/cookbook/rag/graph_rag_app_develop.md +++ b/docs/docs/cookbook/rag/graph_rag_app_develop.md @@ -20,12 +20,20 @@ To store the knowledge in graph, we need an graph database, [TuGraph](https://gi Visit github repository of TuGraph to view [Quick Start](https://tugraph-db.readthedocs.io/zh-cn/latest/3.quick-start/1.preparation.html#id5) document, follow the instructions to pull the TuGraph database docker image (latest / version >= 4.5.0) and launch it. ``` -docker pull tugraph/tugraph-runtime-centos7:latest +docker pull tugraph/tugraph-runtime-centos7:4.5.1 docker run -d -p 7070:7070 -p 7687:7687 -p 9090:9090 --name tugraph_demo tugraph/tugraph-runtime-centos7:latest lgraph_server -d run --enable_plugin true ``` The default port for the bolt protocol is `7687`. +> **Download Tips:** +> +> There is also a corresponding version of the TuGraph Docker image package on OSS. You can also directly download and import it. +> +> ``` +> wget 'https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/tugraph-4.5.1/tugraph-runtime-centos7-4.5.1.tar' -O tugraph-runtime-centos7-4.5.1.tar +> docker load -i tugraph-runtime-centos7-4.5.1.tar +> ``` ### Prepare LLM