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
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]>
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 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**.
0 commit comments