Skip to content

Commit

Permalink
Release new docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Milvus-doc-bot authored and Milvus-doc-bot committed Dec 4, 2024
1 parent c536d06 commit e5eeb25
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
14 changes: 7 additions & 7 deletions v2.4.x/site/en/adminGuide/connect_kafka_ssl.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
Then you can start the Kafka service with the following command:
```shell
$ docker-compose up -d
$ docker compose up -d
```

### 2. Start Milvus and Connect to Kafka
Expand Down Expand Up @@ -99,7 +99,7 @@ kafka:
Then you can start Milvus with the following command:
```shell
$ docker-compose up -d
$ docker compose up -d
```

## Connect Milus to Kafka with SASL/PLAIN Alone
Expand Down Expand Up @@ -162,7 +162,7 @@ KafkaServer {
Then you can start the Kafka service with the following command:

```shell
$ docker-compose up -d
$ docker compose up -d
```

### 2. Start Milvus and Connect to Kafka
Expand Down Expand Up @@ -217,7 +217,7 @@ kafka:
Then you can start Milvus with the following command:

```shell
$ docker-compose up -d
$ docker compose up -d
```

## Connect Milvus to Kafka with SSL Alone
Expand Down Expand Up @@ -489,7 +489,7 @@ services:
Then start the Kafka service with the following command:

```shell
$ docker-compose up -d
$ docker compose up -d
```

### 3. Start Milvus and Connect to Kafka with SSL
Expand Down Expand Up @@ -545,7 +545,7 @@ kafka:
Then start Milvus with the following command:

```shell
$ docker-compose up -d
$ docker compose up -d
```

## Connect Milvus to Kafka with SASL/PLAIN and SSL
Expand Down Expand Up @@ -612,7 +612,7 @@ services:
Then start the Kafka service with the following command:

```shell
$ docker-compose up -d
$ docker compose up -d
```

### 2. Start Milvus and Connect to Kafka with SASL/PLAIN and SSL
Expand Down
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/v2.4.17/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 Down Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Once you have installed Docker Desktop on Microsoft Windows, you can access the
C:\>Invoke-WebRequest https://github.com/milvus-io/milvus/releases/download/v2.4.15/milvus-standalone-docker-compose.yml -OutFile docker-compose.yml​
# Start Milvus​
C:\>docker-compose up -d​
C:\>docker compose up -d​
Creating milvus-etcd ... done​
Creating milvus-minio ... done​
Creating milvus-standalone ... done​
Expand Down Expand Up @@ -170,7 +170,7 @@ The procedure is similar to using Docker Compose to install Milvus in Linux syst
3. Start Milvus.​
```shell
$ sudo docker-compose up -d​
$ sudo docker compose up -d​
Creating milvus-etcd ... done​
Creating milvus-minio ... done​
Expand Down
2 changes: 1 addition & 1 deletion v2.4.x/site/en/integrations/dify_with_milvus.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ If you have Docker Compose V1, use the following command:


```shell
docker-compose up -d
docker compose up -d
```

## Log in to Dify
Expand Down
4 changes: 2 additions & 2 deletions v2.4.x/site/en/integrations/integrate_with_fastgpt.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $ curl -o docker-compose.yml https://raw.githubusercontent.com/labring/FastGPT/m
Execute in the same directory as docker-compose.yml. Ensure that the docker-compose version is ideally above 2.17, as some automation commands may not function otherwise.
```shell
# Launch the container
$ docker-compose up -d
$ docker compose up -d
# Wait for 10s, OneAPI typically needs to restart a few times to initially connect to Mysql
$ sleep 10
# Restart oneapi (Due to certain issues with the default Key of OneAPI, it will display 'channel not found' if not restarted, this can be temporarily resolved by manually restarting once, while waiting for the author's fix)
Expand All @@ -50,5 +50,5 @@ At present, FastGPT can be directly accessed at `ip:3000` (please mind the firew
## Stop the Container
Run the following command to stop the container.
```shell
$ docker-compose down
$ docker compose down
```
4 changes: 2 additions & 2 deletions v2.4.x/site/en/integrations/knowledge_table_with_milvus.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ Besides Milvus, you should also set other environments, e.g. `OPENAI_API_KEY`. Y
## Starting the app

```sh
$ docker-compose up -d --build
$ docker compose up -d --build
```

## Stopping the app

```sh
$ docker-compose down
$ docker compose down
```

## Accessing the project
Expand Down
2 changes: 1 addition & 1 deletion v2.4.x/site/en/integrations/use_milvus_in_docsgpt.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ You can play around with the UI and ask questions about your documents.

If you want to stop the services, run:
```shell
$ docker-compose down
$ docker compose down
```
For further details and more advanced setups, please refer to the [DocsGPT](https://github.com/arc53/DocsGPT) official documentation.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,6 @@ After saving the `cdc.yaml` file, navigate to the `milvus-cdc` directory and run
- Using Docker Compose:

```bash
docker-compose up -d
docker compose up -d
```

0 comments on commit e5eeb25

Please sign in to comment.