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
Why these changes are being introduced:
We formerly documented and used the tag ':latest' for standing up a local
Opensearch instance, but this has the potential to pull a newer version than
we currently have in AWS.
How this addresses that need:
* Pins references in README and Docker Compose YAML to version 2
* Will require updates when we eventually migrate to version 3
Side effects of this change:
* Build Opensearch 2.x locally for testing and development
Relevant ticket(s):
* None
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ TIMDEX! Index Manager (TIM) is a Python CLI application for managing TIMDEX indi
21
21
```bash
22
22
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" \
23
23
-e "plugins.security.disabled=true" \
24
-
opensearchproject/opensearch:2.11.1
24
+
opensearchproject/opensearch:2
25
25
```
26
26
27
27
2. To confirm the instance is up, run `pipenv run tim -u localhost ping` or visit http://localhost:9200/. This should produce a log that looks like the following:
0 commit comments