docs(graphrag): add oss url for tugraph image (#2228)

This commit is contained in:
Florian 2024-12-20 15:55:40 +08:00 committed by GitHub
parent f0d89eaf0d
commit 214c09c5e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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