Skip to content

Commit 05fcbfa

Browse files
bors[bot]edinapapcurquiza
authored
Merge #246
246: docs: update installation guide r=curquiza a=edinapap This is a PR for #245 I replaced the docker command with a curl command and put links to the docker and homebrew options to help more users to install this project from several sources Co-authored-by: Edina Pap <[email protected]> Co-authored-by: Clémentine Urquizar <[email protected]>
2 parents b3504ab + d00e645 commit 05fcbfa

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ Each PR should pass the tests to be accepted.
5353

5454
```bash
5555
# Tests
56-
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
57-
docker run -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey --no-analytics=true
56+
curl -L https://install.meilisearch.com | sh # download MeiliSearch
57+
./meilisearch --master-key=masterKey --no-analytics=true # run MeiliSearch
5858
bundle exec rspec
5959
```
6060

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,17 @@ gem 'meilisearch'
5959

6060
There are many easy ways to [download and run a MeiliSearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
6161

62-
For example, if you use Docker:
62+
For example, using the `curl` command in your [Terminal](https://itconnect.uw.edu/learn/workshops/online-tutorials/web-publishing/what-is-a-terminal/):
6363

64-
```bash
65-
docker pull getmeili/meilisearch:latest # Fetch the latest version of MeiliSearch image from Docker Hub
66-
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
64+
```sh
65+
#Install MeiliSearch
66+
curl -L https://install.meilisearch.com | sh
67+
68+
# Launch MeiliSearch
69+
./meilisearch --master-key=masterKey
6770
```
6871

69-
NB: you can also download MeiliSearch from **Homebrew** or **APT**.
72+
NB: you can also download MeiliSearch from **Homebrew** or **APT** or even run it using **Docker**.
7073

7174
## 🚀 Getting Started
7275

0 commit comments

Comments
 (0)