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: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ achieved through [Gremlin](https://tinkerpop.apache.org/gremlin.html)(a powerful
34
34
35
35
### 1. Docker Way (Convenient for Test)
36
36
37
-
We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to quickly start an inner
37
+
We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph:1.3.0` to quickly start an inner
38
38
HugeGraph server with `RocksDB` (in backgrounds) for **test/dev**.
39
39
You can visit [doc page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy) or
40
40
the [README](hugegraph-server/hugegraph-dist/docker/README.md) for more details. ([Docker Compose](./hugegraph-server/hugegraph-dist/docker/example))
@@ -43,7 +43,7 @@ the [README](hugegraph-server/hugegraph-dist/docker/README.md) for more details.
43
43
>
44
44
> 1. The docker image of hugegraph is a convenience release, but not **official distribution** artifacts. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub).
45
45
>
46
-
> 2. Recommend to use `release tag` (like `1.5.0`) for the stable version. Use `latest` tag to experience the newest functions in development.
46
+
> 2. Recommend to use `release tag` (like `1.3.0`/`1.5.0`) for the stable version. Use `latest` tag to experience the newest functions in development.
Copy file name to clipboardexpand all lines: hugegraph-server/hugegraph-dist/docker/README.md
+8-7
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@
4
4
>
5
5
> 1. The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub).
6
6
>
7
-
> 2. Recommend to use `release tag` (like `1.5.0`) for the stable version. Use `latest` tag to experience the newest functions in development.
7
+
> 2. Recommend to use `release tag` (like `1.3.0`/`1.5.0`) for the stable version. Use `latest` tag to experience the newest functions in development.
8
8
9
9
## 1. Deploy
10
10
11
11
We can use docker to quickly start an inner HugeGraph server with RocksDB in the background.
12
12
13
13
1. Using docker run
14
14
15
-
Use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to start hugegraph server.
15
+
Use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph:1.3.0` to start hugegraph server.
16
16
17
17
2. Using docker compose
18
18
@@ -22,7 +22,7 @@ We can use docker to quickly start an inner HugeGraph server with RocksDB in the
22
22
version: '3'
23
23
services:
24
24
graph:
25
-
image: hugegraph/hugegraph
25
+
image: hugegraph/hugegraph:1.3.0
26
26
ports:
27
27
- 8080:8080
28
28
```
@@ -35,7 +35,7 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
35
35
36
36
1. Using docker run
37
37
38
-
Use `docker run -itd --name=graph -p 8080:8080 -e PRELOAD=true -v /path/to/script:/hugegraph-server/scripts/example.groovy hugegraph/hugegraph`
38
+
Use `docker run -itd --name=graph -p 8080:8080 -e PRELOAD=true -v /path/to/script:/hugegraph-server/scripts/example.groovy hugegraph/hugegraph:1.3.0`
39
39
to start hugegraph server.
40
40
41
41
2. Using docker compose
@@ -46,7 +46,7 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
46
46
version: '3'
47
47
services:
48
48
graph:
49
-
image: hugegraph/hugegraph
49
+
image: hugegraph/hugegraph:1.3.0
50
50
environment:
51
51
- PRELOAD=true
52
52
volumes:
@@ -63,7 +63,7 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
63
63
64
64
1. Using docker run
65
65
66
-
Use `docker run -itd --name=graph -p 8080:8080 -e AUTH=true -e PASSWORD=123456 hugegraph/hugegraph` to enable the authentication and set the password with `-e AUTH=true -e PASSWORD=123456`.
66
+
Use `docker run -itd --name=graph -p 8080:8080 -e AUTH=true -e PASSWORD=123456 hugegraph/hugegraph:1.3.0` to enable the authentication and set the password with `-e AUTH=true -e PASSWORD=123456`.
67
67
68
68
2. Using docker compose
69
69
@@ -73,14 +73,15 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
0 commit comments