Skip to content

Commit

Permalink
downgrade hubble version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imbajin committed Dec 9, 2024
1 parent 5c1132d commit b699a69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions content/cn/docs/quickstart/hugegraph-hubble.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ weight: 3
>
> 若 hubble 和 server 在同一 docker 网络下,**推荐**直接使用`container_name` (如下例的 `server`) 作为主机名。或者也可以使用 **宿主机 IP** 作为主机名,此时端口号为宿主机给 server 配置的端口
我们可以使用 `docker run -itd --name=hubble -p 8088:8088 hugegraph/hubble:1.3.0` 快速启动 [hubble](https://hub.docker.com/r/hugegraph/hubble).
我们可以使用 `docker run -itd --name=hubble -p 8088:8088 hugegraph/hubble:1.2.0` 快速启动 [hubble](https://hub.docker.com/r/hugegraph/hubble).

或者使用 docker-compose 启动 hubble,另外如果 hubble 和 server 在同一个 docker 网络下,可以使用 server 的 contain_name 进行访问,而不需要宿主机的 ip

Expand All @@ -69,7 +69,7 @@ services:
- 8080:8080

hubble:
image: hugegraph/hubble:1.3.0
image: hugegraph/hubble:1.2.0
container_name: hubble
ports:
- 8088:8088
Expand Down
2 changes: 1 addition & 1 deletion content/cn/docs/quickstart/hugegraph-loader.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ services:
- 8080:8080

hubble:
image: hugegraph/hubble:1.3.0
image: hugegraph/hubble:1.2.0
container_name: hubble
ports:
- 8088:8088
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/quickstart/hugegraph-hubble.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ There are three ways to deploy `hugegraph-hubble`
>
> If `hubble` and `server` is in the same docker network, we **recommend** using the `container_name` (in our example, it is `server`) as the hostname, and `8080` as the port. Or you can use the **host IP** as the hostname, and the port is configured by the host for the server.
We can use `docker run -itd --name=hubble -p 8088:8088 hugegraph/hubble:1.3.0` to quick start [hubble](https://hub.docker.com/r/hugegraph/hubble).
We can use `docker run -itd --name=hubble -p 8088:8088 hugegraph/hubble:1.2.0` to quick start [hubble](https://hub.docker.com/r/hugegraph/hubble).

Alternatively, you can use Docker Compose to start `hubble`. Additionally, if `hubble` and the graph are in the same Docker network, you can access the graph using the container name of the graph, eliminating the need for the host machine's IP address.

Expand All @@ -80,7 +80,7 @@ services:
- 8080:8080

hubble:
image: hugegraph/hubble:1.3.0
image: hugegraph/hubble:1.2.0
container_name: hubble
ports:
- 8088:8088
Expand Down

0 comments on commit b699a69

Please sign in to comment.