Skip to content

Commit 2cdda79

Browse files
Modify docker compose reference in quickstart and correct curl to http (#10549)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com> (cherry picked from commit bd048f1) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 981e1f2 commit 2cdda79

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

_getting-started/quickstart.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ You should get a response that looks like this:
6767

6868
## Option 2: Set up a custom Docker cluster
6969

70-
Use Docker Compose to run a local multi-node OpenSearch and OpenSearch Dashboards cluster:
70+
Use [Docker Compose](https://docs.docker.com/compose/) to run a local multi-node OpenSearch and OpenSearch Dashboards cluster:
7171

7272
- [Set up a cluster without security](#set-up-a-cluster-without-security-for-local-development) -- Best for local development.
7373
- [Set up a cluster with security](#set-up-a-cluster-with-security-recommended-for-most-use-cases) -- Try OpenSearch with security by installing it with default certificates.
@@ -107,7 +107,7 @@ This configuration disables security and should only be used in test environment
107107
1. To verify that OpenSearch is running, send the following request:
108108

109109
```bash
110-
curl https://localhost:9200
110+
curl http://localhost:9200
111111
```
112112
{% include copy.html %}
113113

@@ -212,14 +212,6 @@ Eliminate the need for running your Docker commands with `sudo` by adding your u
212212
sudo usermod -aG docker $USER
213213
```
214214

215-
### Error message: "-bash: docker-compose: command not found"
216-
217-
If you installed Docker Desktop, then Docker Compose is already installed on your machine. Try `docker compose` (without the hyphen) instead of `docker-compose`. See [Use Docker Compose](https://docs.docker.com/get-started/08_using_compose/).
218-
219-
### Error message: "docker: 'compose' is not a docker command."
220-
221-
If you installed Docker Engine, then you must install Docker Compose separately, and you will use the command `docker-compose` (with a hyphen). See [Docker Compose](https://github.com/docker/compose).
222-
223215
### Error message: "max virtual memory areas vm.max_map_count [65530] is too low"
224216

225217
OpenSearch will fail to start if your host's `vm.max_map_count` is too low. Review the [important system settings]({{site.url}}{{site.baseurl}}/opensearch/install/important-settings/) if you see the following errors in the service log, and set `vm.max_map_count` appropriately.

_vector-search/getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ docker pull opensearchproject/opensearch:latest && docker run -it -p 9200:9200 -
3535
OpenSearch is now running on port 9200. To verify that OpenSearch is running, send the following request:
3636

3737
```bash
38-
curl https://localhost:9200
38+
curl http://localhost:9200
3939
```
4040
{% include copy.html %}
4141

0 commit comments

Comments
 (0)