Skip to content

Commit 4999db7

Browse files
bump docker image tag version
1 parent 8d77bc7 commit 4999db7

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

guides/docker.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Docker is a tool that bundles applications into containers. Docker containers en
1414
Docker containers are distributed in images. To use Meilisearch, use the `docker pull` command to download a Meilisearch image:
1515

1616
```sh
17-
docker pull getmeili/meilisearch:v1.11
17+
docker pull getmeili/meilisearch:v1.12
1818
```
1919

2020
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
3131
docker run -it --rm \
3232
-p 7700:7700 \
3333
-v $(pwd)/meili_data:/meili_data \
34-
getmeili/meilisearch:v1.11
34+
getmeili/meilisearch:v1.12
3535
```
3636

3737
### Configure Meilisearch
@@ -47,7 +47,7 @@ docker run -it --rm \
4747
-p 7700:7700 \
4848
-e MEILI_MASTER_KEY='MASTER_KEY'\
4949
-v $(pwd)/meili_data:/meili_data \
50-
getmeili/meilisearch:v1.11
50+
getmeili/meilisearch:v1.12
5151
```
5252

5353
#### Passing instance options with CLI arguments
@@ -58,7 +58,7 @@ If you want to pass command-line arguments to Meilisearch with Docker, you must
5858
docker run -it --rm \
5959
-p 7700:7700 \
6060
-v $(pwd)/meili_data:/meili_data \
61-
getmeili/meilisearch:v1.11 \
61+
getmeili/meilisearch:v1.12 \
6262
meilisearch --master-key="MASTER_KEY"
6363
```
6464

@@ -76,7 +76,7 @@ To keep your data intact between reboots, specify a dedicated volume by running
7676
docker run -it --rm \
7777
-p 7700:7700 \
7878
-v $(pwd)/meili_data:/meili_data \
79-
getmeili/meilisearch:v1.11
79+
getmeili/meilisearch:v1.12
8080
```
8181

8282
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
9191
docker run -it --rm \
9292
-p 7700:7700 \
9393
-v $(pwd)/meili_data:/meili_data \
94-
getmeili/meilisearch:v1.11 \
94+
getmeili/meilisearch:v1.12 \
9595
meilisearch --import-dump /meili_data/dumps/20200813-042312213.dump
9696
```
9797

@@ -111,7 +111,7 @@ To generate a Meilisearch snapshot with Docker, launch Meilisearch with `--sched
111111
docker run -it --rm \
112112
-p 7700:7700 \
113113
-v $(pwd)/meili_data:/meili_data \
114-
getmeili/meilisearch:v1.11 \
114+
getmeili/meilisearch:v1.12 \
115115
meilisearch --schedule-snapshot --snapshot-dir /meili_data/snapshots
116116
```
117117

@@ -123,7 +123,7 @@ To import a snapshot, launch Meilisearch with the `--import-snapshot` option:
123123
docker run -it --rm \
124124
-p 7700:7700 \
125125
-v $(pwd)/meili_data:/meili_data \
126-
getmeili/meilisearch:v1.11 \
126+
getmeili/meilisearch:v1.12 \
127127
meilisearch --import-snapshot /meili_data/snapshots/data.ms.snapshot
128128
```
129129

learn/self_hosted/install_meilisearch_locally.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ These commands launch the **latest stable release** of Meilisearch.
5454

5555
```bash
5656
# Fetch the latest version of Meilisearch image from DockerHub
57-
docker pull getmeili/meilisearch:v1.11
57+
docker pull getmeili/meilisearch:v1.12
5858

5959
# Launch Meilisearch in development mode with a master key
6060
docker run -it --rm \
6161
-p 7700:7700 \
6262
-e MEILI_ENV='development' \
6363
-v $(pwd)/meili_data:/meili_data \
64-
getmeili/meilisearch:v1.11
64+
getmeili/meilisearch:v1.12
6565
# Use ${pwd} instead of $(pwd) in PowerShell
6666
```
6767

0 commit comments

Comments
 (0)