This is an automated email from the ASF dual-hosted git repository.
jin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
The following commit(s) were added to refs/heads/master by this push:
new f838897e6 fix(docker): update server image desc (#2702)
f838897e6 is described below
commit f838897e6ba68238322b9ede47cb6d4428775680
Author: VGalaxies <[email protected]>
AuthorDate: Mon Dec 9 17:01:01 2024 +0800
fix(docker): update server image desc (#2702)
---
README.md | 4 ++--
hugegraph-server/hugegraph-dist/docker/README.md | 15 ++++++++-------
2 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index ade0c2b92..eaa95d568 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ achieved through
[Gremlin](https://tinkerpop.apache.org/gremlin.html)(a powerful
### 1. Docker Way (Convenient for Test)
-We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to
quickly start an inner
+We can use `docker run -itd --name=graph -p 8080:8080
hugegraph/hugegraph:1.3.0` to quickly start an inner
HugeGraph server with `RocksDB` (in backgrounds) for **test/dev**.
You can visit [doc
page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy)
or
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.
>
> 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).
>
-> 2. Recommend to use `release tag` (like `1.5.0`) for the stable version. Use
`latest` tag to experience the newest functions in development.
+> 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.
### 2. Download Way
diff --git a/hugegraph-server/hugegraph-dist/docker/README.md
b/hugegraph-server/hugegraph-dist/docker/README.md
index 6b1aefd25..5fac10de5 100644
--- a/hugegraph-server/hugegraph-dist/docker/README.md
+++ b/hugegraph-server/hugegraph-dist/docker/README.md
@@ -4,7 +4,7 @@
>
> 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).
>
-> 2. Recommend to use `release tag` (like `1.5.0`) for the stable version. Use
`latest` tag to experience the newest functions in development.
+> 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.
## 1. Deploy
@@ -12,7 +12,7 @@ We can use docker to quickly start an inner HugeGraph server
with RocksDB in the
1. Using docker run
- Use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to
start hugegraph server.
+ Use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph:1.3.0`
to start hugegraph server.
2. Using docker compose
@@ -22,7 +22,7 @@ We can use docker to quickly start an inner HugeGraph server
with RocksDB in the
version: '3'
services:
graph:
- image: hugegraph/hugegraph
+ image: hugegraph/hugegraph:1.3.0
ports:
- 8080:8080
```
@@ -35,7 +35,7 @@ If you want to customize the preloaded data, please mount the
groovy scripts (no
1. Using docker run
- Use `docker run -itd --name=graph -p 8080:8080 -e PRELOAD=true -v
/path/to/script:/hugegraph-server/scripts/example.groovy hugegraph/hugegraph`
+ 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`
to start hugegraph server.
2. Using docker compose
@@ -46,7 +46,7 @@ If you want to customize the preloaded data, please mount the
groovy scripts (no
version: '3'
services:
graph:
- image: hugegraph/hugegraph
+ image: hugegraph/hugegraph:1.3.0
environment:
- PRELOAD=true
volumes:
@@ -63,7 +63,7 @@ If you want to customize the preloaded data, please mount the
groovy scripts (no
1. Using docker run
- 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`.
+ 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`.
2. Using docker compose
@@ -73,7 +73,7 @@ If you want to customize the preloaded data, please mount the
groovy scripts (no
version: '3'
services:
server:
- image: hugegraph/hugegraph
+ image: hugegraph/hugegraph:1.3.0
container_name: graph
ports:
- 8080:8080
@@ -81,6 +81,7 @@ If you want to customize the preloaded data, please mount the
groovy scripts (no
- AUTH=true
- PASSWORD=123456
```
+
## 4. Running Open-Telemetry-Collector
> CAUTION: