Skip to content

Commit 0acb9ca

Browse files
Fixes docker release README (#4450)
Signed-off-by: Darshit Chanpura <dchanp@amazon.com>
1 parent 07d5a08 commit 0acb9ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docker/release/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,11 @@ Here are three example scenarios of using above variables:
103103
#### Scenario 2: No demo certs/configs + disable security on both OpenSearch and OpenSearch-Dashboards:
104104
* OpenSearch:
105105
```
106-
$ docker run -it -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchproject/opensearch:1.1.0
106+
docker run -it -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e "DISABLE_INSTALL_DEMO_CONFIG=true" -e "DISABLE_SECURITY_PLUGIN=true" opensearchproject/opensearch:1.1.0
107+
```
108+
Note: For OpenSearch > 2.11.1 and > 1.3.14, `DISABLE_SECURITY_PLUGIN` when set to true will automatically disable the security demo configuration setup and will no longer require `DISABLE_INSTALL_DEMO_CONFIG` to be explicitly set.
109+
```
110+
docker run -it -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchproject/opensearch:2.12.0
107111
```
108112
* OpenSearch-Dashboards:
109113
```

0 commit comments

Comments
 (0)