Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded from 2.2.0 to 2.6.0 #11

Merged
merged 1 commit into from
Mar 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenSearch - Docker - Compose

![OpenSearch version](https://img.shields.io/badge/OpenSearch%20version-2.2.0-blue)
![OpenSearch version](https://img.shields.io/badge/OpenSearch%20version-2.6.0-blue)

Dockerized cluster architecture for OpenSearch with compose.

Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:

os01:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.6.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os01
Expand Down Expand Up @@ -32,7 +32,7 @@ services:

os02:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.6.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os02
Expand All @@ -57,7 +57,7 @@ services:

os03:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.6.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os03
Expand All @@ -82,7 +82,7 @@ services:

kibana:
restart: always
image: opensearchproject/opensearch-dashboards:2.2.0
image: opensearchproject/opensearch-dashboards:2.6.0
ports:
- 5601:5601
volumes:
Expand Down