You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vermeer/README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,28 @@
3
3
## Introduction
4
4
Vermeer is a high-performance distributed graph computing platform based on memory, supporting more than 15 graph algorithms, custom algorithm extensions, and custom data source access.
5
5
6
+
## Run with Docker
7
+
8
+
Pull the image:
9
+
```
10
+
docker pull hugegraph/vermeer:latest
11
+
```
12
+
13
+
Create local configuration files, for example, `~/master.ini` and `~/worker.ini`.
14
+
15
+
Run with Docker. The `--env` flag specifies the file name.
16
+
17
+
```
18
+
master: docker run -v ~/:/go/bin/config hugegraph/vermeer --env=master
19
+
worker: docker run -v ~/:/go/bin/config hugegraph/vermeer --env=worker
20
+
```
21
+
22
+
We've also provided a `docker-compose` file. Once you've created `~/master.ini` and `~/worker.ini`, and updated the `master_peer` in `worker.ini` to `172.20.0.10:6689`, you can run it using the following command:
0 commit comments