[skip ci]Update build doc format (#9070)

Signed-off-by: Weida Zhu <weida.zhu@zilliz.com>
This commit is contained in:
zwd1208 2021-10-02 16:43:56 +08:00 committed by GitHub
parent dbc104e178
commit 12aaa59be5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,15 +131,14 @@ Stop Dev Container
Milvus uses Python SDK to write test cases to verify the correctness of Milvus functions. Before run E2E tests, you need a running Milvus:
```shell
$ cd deployments/docker/dev
$ docker-compose up -d
$ cd ../../../
# Running Milvus
$ build/builder.sh /bin/bash -c "export ROCKSMQ_PATH='/tmp/milvus/rdb_data' && ./scripts/start_standalone.sh && cat"
# or
$ build/builder.sh /bin/bash -c "./scripts/start_cluster.sh && cat"
cd deployments/docker/dev
docker-compose up -d
cd ../../../
build/builder.sh /bin/bash -c "export ROCKSMQ_PATH='/tmp/milvus/rdb_data' && ./scripts/start_standalone.sh && cat"
```
or
```shell
build/builder.sh /bin/bash -c "./scripts/start_cluster.sh && cat"
```
To run E2E tests, use these command: