Update Milvus offline installation README (#7028)

Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
pull/7053/head
quicksilver 2021-08-10 13:57:27 +08:00 committed by GitHub
parent bdb8396e74
commit 17ac9ca07e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 1 deletions

View File

@ -59,7 +59,8 @@ The Docker images will be stored under **images** directory.
2. Enter the following command to load the Docker images:
```shell
for image in $(find images/ -type f -name "*.tar.gz") ; do gunzip -c $image | docker load; done
cd images/
for image in $(find . -type f -name "*.tar.gz") ; do gunzip -c $image | docker load; done
```
## Install Milvus
@ -74,4 +75,18 @@ docker-compose -f docker-compose.yaml up -d
```shell
kubectl apply -f milvus_manifest.yaml
```
## Uninstall Milvus
- Uninstall Milvus with Docker Compose
```shell
docker-compose -f docker-compose.yaml down
```
- Uninstall Milvus on Kubernetes
```shell
kubectl delete -f milvus_manifest.yaml
```