Skip to content

Commit 75e2d06

Browse files
Merge #1640
1640: Apply the direct tag instead of latest alias r=maryamsulemani97 a=brunoocasali I found one good practice about [docker here #6](https://developers.redhat.com/blog/2016/02/24/10-things-to-avoid-in-docker-containers) that mentions the usage of the latest tag. They don’t recommend it because it could be misleading and may not represent the actual state of the image throughout the days. Since this could avoid some misleading problems for the users, the idea is to update the docs with the correct tag every time. Co-authored-by: Bruno Casali <[email protected]>
2 parents 9171152 + 8159d04 commit 75e2d06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

learn/getting_started/quick_start.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ These commands launch the **latest stable release** of Meilisearch.
5151

5252
```bash
5353
# Fetch the latest version of Meilisearch image from DockerHub
54-
docker pull getmeili/meilisearch:latest
54+
docker pull getmeili/meilisearch:v0.27.1
5555

5656
# Launch Meilisearch
5757
docker run -it --rm \
5858
-p 7700:7700 \
5959
-v $(pwd)/meili_data:/meili_data \
60-
getmeili/meilisearch:latest
60+
getmeili/meilisearch:v0.27.1
6161
```
6262

6363
Data written to a **Docker container is not persistent** and is wiped every time the container is stopped. We recommend using a shared Docker volume between containers and host machines to provide persistent storage.

0 commit comments

Comments
 (0)