Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions learn/getting_started/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ These commands launch the **latest stable release** of Meilisearch.

```bash
# Fetch the latest version of Meilisearch image from DockerHub
docker pull getmeili/meilisearch:v0.27.2
docker pull getmeili/meilisearch:v0.28

# Launch Meilisearch in development mode with a master key
docker run -it --rm \
-p 7700:7700 \
-e MEILI_MASTER_KEY='MASTER_KEY'\
-v $(pwd)/meili_data:/meili_data \
getmeili/meilisearch:v0.27.1 \
getmeili/meilisearch:v0.28 \
meilisearch --env="development"
```

Expand Down Expand Up @@ -101,10 +101,10 @@ cd meilisearch

Choose the release you want to use. You can find the full list [here](https://github.com/meilisearch/meilisearch/releases).

In the cloned repository, run the following command replacing `vX.Y.Z` with the tag you selected:
In the cloned repository, run the following command to access the most recent version of Meilisearch:

```bash
git checkout v0.25.2
git checkout stable
```

Finally, update the rust toolchain, compile the project, and execute the binary.
Expand Down