Skip to content

Commit

Permalink
Merge pull request #2753 from saikumar0605/patch-1
Browse files Browse the repository at this point in the history
Update install_standalone-docker-compose.md
  • Loading branch information
AnthonyTsu1984 authored Oct 9, 2024
2 parents 998df66 + 23508b4 commit 964f4bd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Milvus provides a Docker Compose configuration file in the Milvus repository. To
$ wget https://github.com/milvus-io/milvus/releases/download/v{{var.milvus_release_version}}/milvus-standalone-docker-compose.yml -O docker-compose.yml

# Start Milvus
$ sudo docker compose up -d
$ sudo docker-compose up -d

Creating milvus-etcd ... done
Creating milvus-minio ... done
Expand All @@ -49,7 +49,7 @@ After starting up Milvus,
You can check if the containers are up and running using the following command:

```shell
$ sudo docker compose ps
$ sudo docker-compose ps

Name Command State Ports
--------------------------------------------------------------------------------------------------------------------
Expand All @@ -62,7 +62,7 @@ You can stop and delete this container as follows

```shell
# Stop Milvus
$ sudo docker compose down
$ sudo docker-compose down

# Delete service data
$ sudo rm -rf volumes
Expand Down

0 comments on commit 964f4bd

Please sign in to comment.