mirror of https://github.com/milvus-io/milvus.git
Update Milvus offline installation README (#7028)
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>pull/7053/head
parent
bdb8396e74
commit
17ac9ca07e
|
@ -59,7 +59,8 @@ The Docker images will be stored under **images** directory.
|
||||||
2. Enter the following command to load the Docker images:
|
2. Enter the following command to load the Docker images:
|
||||||
|
|
||||||
```shell
|
```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
|
## Install Milvus
|
||||||
|
@ -74,4 +75,18 @@ docker-compose -f docker-compose.yaml up -d
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
kubectl apply -f milvus_manifest.yaml
|
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
|
||||||
```
|
```
|
Loading…
Reference in New Issue