Skip to content

Commit c926bc8

Browse files
committed
fix: update image desc
1 parent f0b1395 commit c926bc8

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ achieved through [Gremlin](https://tinkerpop.apache.org/gremlin.html)(a powerful
3434

3535
### 1. Docker Way (Convenient for Test)
3636

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
3838
HugeGraph server with `RocksDB` (in backgrounds) for **test/dev**.
3939
You can visit [doc page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy) or
4040
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.
4343
>
4444
> 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).
4545
>
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.
4747
4848
### 2. Download Way
4949

hugegraph-server/hugegraph-dist/docker/README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
>
55
> 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).
66
>
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.
88
99
## 1. Deploy
1010

1111
We can use docker to quickly start an inner HugeGraph server with RocksDB in the background.
1212

1313
1. Using docker run
1414

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.
1616

1717
2. Using docker compose
1818

@@ -22,7 +22,7 @@ We can use docker to quickly start an inner HugeGraph server with RocksDB in the
2222
version: '3'
2323
services:
2424
graph:
25-
image: hugegraph/hugegraph
25+
image: hugegraph/hugegraph:1.3.0
2626
ports:
2727
- 8080:8080
2828
```
@@ -35,7 +35,7 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
3535

3636
1. Using docker run
3737

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`
3939
to start hugegraph server.
4040

4141
2. Using docker compose
@@ -46,7 +46,7 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
4646
version: '3'
4747
services:
4848
graph:
49-
image: hugegraph/hugegraph
49+
image: hugegraph/hugegraph:1.3.0
5050
environment:
5151
- PRELOAD=true
5252
volumes:
@@ -63,7 +63,7 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
6363

6464
1. Using docker run
6565

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`.
6767

6868
2. Using docker compose
6969

@@ -73,14 +73,15 @@ If you want to customize the preloaded data, please mount the groovy scripts (no
7373
version: '3'
7474
services:
7575
server:
76-
image: hugegraph/hugegraph
76+
image: hugegraph/hugegraph:1.3.0
7777
container_name: graph
7878
ports:
7979
- 8080:8080
8080
environment:
8181
- AUTH=true
8282
- PASSWORD=123456
8383
```
84+
8485
## 4. Running Open-Telemetry-Collector
8586

8687
> CAUTION:

0 commit comments

Comments
 (0)