Skip to content

Commit 1cabc53

Browse files
Merge #544
544: Update outdated docker run commands r=bidoubiwa a=bidoubiwa Docker commands where still using the old way to run the Meilisearch image. This is updated to the new way that is not running the binary like this `./meilisearch` but like this `meilisearch` Co-authored-by: Charlotte Vermandel <[email protected]> Co-authored-by: cvermand <[email protected]>
2 parents e250a6f + ef33d5a commit 1cabc53

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Each PR should pass the tests and the linter to be accepted.
4242
```bash
4343
# Run a Meilisearch instance
4444
docker pull getmeili/meilisearch:latest # Fetch the latest version of Meilisearch image from Docker Hub
45-
docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics
45+
docker run -p 7700:7700 getmeili/meilisearch:latest meilisearch --master-key=masterKey --no-analytics
4646

4747
# Integration tests
4848
yarn test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ For example, if you use Docker:
7777

7878
```bash
7979
docker pull getmeili/meilisearch:latest # Fetch the latest version of Meilisearch image from Docker Hub
80-
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
80+
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest meilisearch --master-key=masterKey
8181
```
8282

8383
### 🏃‍♂️ Run Strapi <!-- omit in toc -->

resources/docker/docker-compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ services:
88
- meilisearch
99
meilisearch:
1010
image: getmeili/meilisearch
11-
command: ./meilisearch
1211
volumes:
1312
- ../meilisearch/data.ms:/data.ms
1413
ports:

0 commit comments

Comments
 (0)