[skip ci]Update offline installation doc (#8610)

Signed-off-by: Weida Zhu <weida.zhu@zilliz.com>
pull/8617/head
zwd1208 2021-09-26 19:49:58 +08:00 committed by GitHub
parent 18de410275
commit 65d74ff86f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
## Manually downloading Docker images
Your Milvus installation may fail when images are not properly loaded from public Docker registries. To pull all images and save them into a directory that can be moved to the target host and loaded manually, perform the following procedures:
Milvus installation may fail when images are not properly loaded from public Docker registries. To pull all images and save them into a directory that can be moved to the target host and loaded manually, perform the following procedures:
### Step 1: Save Milvus manifest and Docker images
@ -61,13 +61,13 @@ for image in $(find . -type f -name "*.tar.gz") ; do gunzip -c $image | docker l
## Install Milvus
- Install Milvus with Docker Compose
- Install with Docker Compose
```shell
docker-compose -f docker-compose.yml up -d
```
- Install Milvus on Kubernetes
- Install on Kubernetes
```shell
kubectl apply -f milvus_manifest.yaml
@ -75,13 +75,13 @@ kubectl apply -f milvus_manifest.yaml
## Uninstall Milvus
- Uninstall Milvus with Docker Compose
- Uninstall with Docker Compose
```shell
docker-compose -f docker-compose.yml down
```
- Uninstall Milvus on Kubernetes
- Uninstall on Kubernetes
```shell
kubectl delete -f milvus_manifest.yaml