|
@@ -23,22 +23,25 @@ Milvus insight is under rapid development nad we are adding new features weekly,
|
|
|
|
|
|
Ensure you have Milvus installed on [your server](https://milvus.io/docs/install_standalone-docker.md) or [cluster](https://milvus.io/docs/install_cluster-docker.md), and Milvus insight only supports Milvus 2.x.
|
|
|
|
|
|
-### ⭐️ Install Milvus insight
|
|
|
-
|
|
|
-Start Docker container and map the url to the container:
|
|
|
+### ⭐️ Start a Milvus insight instance
|
|
|
|
|
|
```code
|
|
|
-docker run -p 8000:3000 -e HOST_URL=http://127.0.0.1:8000 -e MILVUS_URL=127.0.0.1:19530 milvusdb/milvus-insight:latest
|
|
|
+docker run -p 8000:3000 -e HOST_URL=192.168.0.1:8000 -e MILVUS_URL=192.168.0.1:19530 milvusdb/milvus-insight:latest
|
|
|
```
|
|
|
|
|
|
-| Parameters | Default | required | description |
|
|
|
-| :--------- | :-------------------- | :------: | :---------------: |
|
|
|
-| HOST_URL | http://127.0.0.1:8000 | true | Docker host url |
|
|
|
-| MILVUS_URL | 127.0.0.1:19530 | false | Milvus server url |
|
|
|
+Once you start the docker, open the browser, type `http://192.168.0.1:8000`, you can view the Milvus insight.
|
|
|
|
|
|
-Once you start the docker, open the browser, type `http://127.0.0.1:8000`, you can view the milvus insight.
|
|
|
+#### Params
|
|
|
+| Parameter | Example | required | description |
|
|
|
+| :--------- | :---------------------- | :------: | ------------------------------------------- |
|
|
|
+| HOST_URL | http://192.168.0.1:8000 | true | Where Milvus insight container is installed |
|
|
|
+| MILVUS_URL | 192.168.0.1:19530 | false | Optional, Milvus server URL |
|
|
|
|
|
|
-***note*** We plan to release milvus insight once a feature is done. Also, if you want to try the nightly build, please pull the docker image with the `dev` tag.
|
|
|
+#### Try the dev build
|
|
|
+***note*** We plan to release Milvus insight once a feature is done. Also, if you want to try the nightly build, please pull the docker image with the `dev` tag.
|
|
|
+```code
|
|
|
+docker run -p 8000:3000 -e HOST_URL=192.168.0.1:8000 -e MILVUS_URL=192.168.0.1:19530 milvusdb/milvus-insight:dev
|
|
|
+```
|
|
|
|
|
|
## ✨ Building and Running Milvus insight, and/or Contributing Code
|
|
|
|