You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,14 +59,17 @@ gem 'meilisearch'
59
59
60
60
There are many easy ways to [download and run a MeiliSearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
61
61
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/):
63
63
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
67
70
```
68
71
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**.
70
73
71
74
## 🚀 Getting Started
72
75
@@ -124,7 +127,7 @@ All the supported options are described in the [search parameters](https://docs.
0 commit comments