Skip to content

Commit 9e6fe75

Browse files
Bump Docker version (#3262)
1 parent 4f76232 commit 9e6fe75

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
@@ -12,7 +12,7 @@ Docker is a tool that bundles applications into containers. Docker containers en
1212
Docker containers are distributed in images. To use Meilisearch, use the `docker pull` command to download a Meilisearch image:
1313

1414
```sh
15-
docker pull getmeili/meilisearch:v1.14
15+
docker pull getmeili/meilisearch:v1.15
1616
```
1717

1818
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.
@@ -29,7 +29,7 @@ After completing the previous step, use `docker run` to launch the Meilisearch i
2929
docker run -it --rm \
3030
-p 7700:7700 \
3131
-v $(pwd)/meili_data:/meili_data \
32-
getmeili/meilisearch:v1.14
32+
getmeili/meilisearch:v1.15
3333
```
3434

3535
### Configure Meilisearch
@@ -45,7 +45,7 @@ docker run -it --rm \
4545
-p 7700:7700 \
4646
-e MEILI_MASTER_KEY='MASTER_KEY'\
4747
-v $(pwd)/meili_data:/meili_data \
48-
getmeili/meilisearch:v1.14
48+
getmeili/meilisearch:v1.15
4949
```
5050

5151
#### Passing instance options with CLI arguments
@@ -56,7 +56,7 @@ If you want to pass command-line arguments to Meilisearch with Docker, you must
5656
docker run -it --rm \
5757
-p 7700:7700 \
5858
-v $(pwd)/meili_data:/meili_data \
59-
getmeili/meilisearch:v1.14 \
59+
getmeili/meilisearch:v1.15 \
6060
meilisearch --master-key="MASTER_KEY"
6161
```
6262

@@ -74,7 +74,7 @@ To keep your data intact between reboots, specify a dedicated volume by running
7474
docker run -it --rm \
7575
-p 7700:7700 \
7676
-v $(pwd)/meili_data:/meili_data \
77-
getmeili/meilisearch:v1.14
77+
getmeili/meilisearch:v1.15
7878
```
7979

8080
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.
@@ -89,7 +89,7 @@ To import a dump, use Meilisearch's `--import-dump` command-line option and spec
8989
docker run -it --rm \
9090
-p 7700:7700 \
9191
-v $(pwd)/meili_data:/meili_data \
92-
getmeili/meilisearch:v1.14 \
92+
getmeili/meilisearch:v1.15 \
9393
meilisearch --import-dump /meili_data/dumps/20200813-042312213.dump
9494
```
9595

@@ -109,7 +109,7 @@ To generate a Meilisearch snapshot with Docker, launch Meilisearch with `--sched
109109
docker run -it --rm \
110110
-p 7700:7700 \
111111
-v $(pwd)/meili_data:/meili_data \
112-
getmeili/meilisearch:v1.14 \
112+
getmeili/meilisearch:v1.15 \
113113
meilisearch --schedule-snapshot --snapshot-dir /meili_data/snapshots
114114
```
115115

@@ -121,7 +121,7 @@ To import a snapshot, launch Meilisearch with the `--import-snapshot` option:
121121
docker run -it --rm \
122122
-p 7700:7700 \
123123
-v $(pwd)/meili_data:/meili_data \
124-
getmeili/meilisearch:v1.14 \
124+
getmeili/meilisearch:v1.15 \
125125
meilisearch --import-snapshot /meili_data/snapshots/data.ms.snapshot
126126
```
127127

learn/self_hosted/install_meilisearch_locally.mdx

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

5454
```bash
5555
# Fetch the latest version of Meilisearch image from DockerHub
56-
docker pull getmeili/meilisearch:v1.14
56+
docker pull getmeili/meilisearch:v1.15
5757

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

0 commit comments

Comments
 (0)