Skip to content

Commit 1ced95e

Browse files
bors[bot]maryamsulemani97guimachiavelli
authored
Merge #2099 #2107
2099: v1.0: Update docker r=guimachiavelli a=maryamsulemani97 closes #2073 2107: v1.0: Update Postman collection r=guimachiavelli a=guimachiavelli Closes #2072 Co-authored-by: maryamsulemani97 <maryam@meilisearch.com> Co-authored-by: gui machiavelli <hey@guimachiavelli.com>
3 parents efcb55b + 324f006 + 295c9e8 commit 1ced95e

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

.vuepress/public/postman/meilisearch-collection.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"info": {
3-
"_postman_id": "a4f9078b-c91f-4399-9a98-5e4adc5099a2",
4-
"name": "Meilisearch v0.30",
3+
"_postman_id": "bcc2fb5b-d130-4a7b-9acf-c481248b2b9d",
4+
"name": "Meilisearch v1.0",
55
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
66
},
77
"item": [
@@ -481,7 +481,8 @@
481481
"{{url}}"
482482
],
483483
"path": [
484-
"tasks"
484+
"tasks",
485+
"cancel"
485486
],
486487
"query": [
487488
{
@@ -2035,7 +2036,7 @@
20352036
"bearer": [
20362037
{
20372038
"key": "token",
2038-
"value": "masterKey",
2039+
"value": "aSampleMasterKey",
20392040
"type": "string"
20402041
}
20412042
]

learn/cookbooks/docker.md

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

1111
```sh
12-
docker pull getmeili/meilisearch:v0.30
12+
docker pull getmeili/meilisearch:v1.0
1313
```
1414

1515
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.
@@ -26,7 +26,7 @@ After completing the previous step, use `docker run` to launch the Meilisearch i
2626
docker run -it --rm \
2727
-p 7700:7700 \
2828
-v $(pwd)/meili_data:/meili_data \
29-
getmeili/meilisearch:v0.30
29+
getmeili/meilisearch:v1.0
3030
```
3131

3232
### Configure Meilisearch
@@ -42,7 +42,7 @@ docker run -it --rm \
4242
-p 7700:7700 \
4343
-e MEILI_MASTER_KEY='MASTER_KEY'\
4444
-v $(pwd)/meili_data:/meili_data \
45-
getmeili/meilisearch:v0.30
45+
getmeili/meilisearch:v1.0
4646
```
4747

4848
#### Passing instance options with CLI arguments
@@ -53,7 +53,7 @@ If you want to pass command-line arguments to Meilisearch with Docker, you must
5353
docker run -it --rm \
5454
-p 7700:7700 \
5555
-v $(pwd)/meili_data:/meili_data \
56-
getmeili/meilisearch:v0.30
56+
getmeili/meilisearch:v1.0
5757
meilisearch --master-key="MASTER_KEY"
5858
```
5959

@@ -71,7 +71,7 @@ To keep your data intact between reboots, specify a dedicated volume by running
7171
docker run -it --rm \
7272
-p 7700:7700 \
7373
-v $(pwd)/meili_data:/meili_data \
74-
getmeili/meilisearch:v0.30
74+
getmeili/meilisearch:v1.0
7575
```
7676

7777
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.
@@ -86,7 +86,7 @@ To import a dump, use Meilisearch's `--import-dump` command-line option and spec
8686
docker run -it --rm \
8787
-p 7700:7700 \
8888
-v $(pwd)/meili_data:/meili_data \
89-
getmeili/meilisearch:v0.30
89+
getmeili/meilisearch:v1.0
9090
meilisearch --import-dump /meili_data/dumps/20200813-042312213.dump
9191
```
9292

@@ -106,7 +106,7 @@ To generate a Meilisearch snapshot with Docker, launch Meilisearch with `--sched
106106
docker run -it --rm \
107107
-p 7700:7700 \
108108
-v $(pwd)/meili_data:/meili_data \
109-
getmeili/meilisearch:v0.30
109+
getmeili/meilisearch:v1.0
110110
meilisearch --schedule-snapshot --snapshot-dir /meili_data/snapshots
111111
```
112112

@@ -118,7 +118,7 @@ To import a snapshot, launch Meilisearch with the `--import-snapshot` option:
118118
docker run -it --rm \
119119
-p 7700:7700 \
120120
-v $(pwd)/meili_data:/meili_data \
121-
getmeili/meilisearch:v0.30
121+
getmeili/meilisearch:v1.0
122122
meilisearch --import-snapshot /meili_data/snapshots/data.ms.snapshot
123123
```
124124

learn/getting_started/quick_start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ 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:v0.30
54+
docker pull getmeili/meilisearch:v1.0
5555

5656
# Launch Meilisearch in development mode with a master key
5757
docker run -it --rm \
5858
-p 7700:7700 \
5959
-e MEILI_MASTER_KEY='MASTER_KEY'\
6060
-v $(pwd)/meili_data:/meili_data \
61-
getmeili/meilisearch:v0.30 \
61+
getmeili/meilisearch:v1.0 \
6262
meilisearch --env="development"
6363
```
6464

0 commit comments

Comments
 (0)