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
Copy file name to clipboardExpand all lines: guides/docker.mdx
+8-8
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Docker is a tool that bundles applications into containers. Docker containers en
14
14
Docker containers are distributed in images. To use Meilisearch, use the `docker pull` command to download a Meilisearch image:
15
15
16
16
```sh
17
-
docker pull getmeili/meilisearch:v1.12
17
+
docker pull getmeili/meilisearch:v1.13
18
18
```
19
19
20
20
Meilisearch deploys a new Docker image with every release of the engine. Each image is tagged with the corresponding Meilisearch version, indicated in the above example by the text following the `:` symbol. You can see [the full list of available Meilisearch Docker images](https://hub.docker.com/r/getmeili/meilisearch/tags#!) on Docker Hub.
@@ -31,7 +31,7 @@ After completing the previous step, use `docker run` to launch the Meilisearch i
31
31
docker run -it --rm \
32
32
-p 7700:7700 \
33
33
-v $(pwd)/meili_data:/meili_data \
34
-
getmeili/meilisearch:v1.12
34
+
getmeili/meilisearch:v1.13
35
35
```
36
36
37
37
### Configure Meilisearch
@@ -47,7 +47,7 @@ docker run -it --rm \
47
47
-p 7700:7700 \
48
48
-e MEILI_MASTER_KEY='MASTER_KEY'\
49
49
-v $(pwd)/meili_data:/meili_data \
50
-
getmeili/meilisearch:v1.12
50
+
getmeili/meilisearch:v1.13
51
51
```
52
52
53
53
#### Passing instance options with CLI arguments
@@ -58,7 +58,7 @@ If you want to pass command-line arguments to Meilisearch with Docker, you must
58
58
docker run -it --rm \
59
59
-p 7700:7700 \
60
60
-v $(pwd)/meili_data:/meili_data \
61
-
getmeili/meilisearch:v1.12 \
61
+
getmeili/meilisearch:v1.13 \
62
62
meilisearch --master-key="MASTER_KEY"
63
63
```
64
64
@@ -76,7 +76,7 @@ To keep your data intact between reboots, specify a dedicated volume by running
76
76
docker run -it --rm \
77
77
-p 7700:7700 \
78
78
-v $(pwd)/meili_data:/meili_data \
79
-
getmeili/meilisearch:v1.12
79
+
getmeili/meilisearch:v1.13
80
80
```
81
81
82
82
The example above uses `$(pwd)/meili_data`, which is a directory in the host machine. Depending on your OS, mounting volumes from the host to the container might result in performance loss and is only recommended when developing your application.
@@ -91,7 +91,7 @@ To import a dump, use Meilisearch's `--import-dump` command-line option and spec
0 commit comments