You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardExpand all lines: learn/getting_started/quick_start.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -51,13 +51,13 @@ These commands launch the **latest stable release** of Meilisearch.
51
51
52
52
```bash
53
53
# Fetch the latest version of Meilisearch image from DockerHub
54
-
docker pull getmeili/meilisearch:latest
54
+
docker pull getmeili/meilisearch:v0.27.1
55
55
56
56
# Launch Meilisearch
57
57
docker run -it --rm \
58
58
-p 7700:7700 \
59
59
-v $(pwd)/meili_data:/meili_data \
60
-
getmeili/meilisearch:latest
60
+
getmeili/meilisearch:v0.27.1
61
61
```
62
62
63
63
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