Skip to content

Commit

Permalink
Merge pull request #14 from flavienbwk/r/2.15.0
Browse files Browse the repository at this point in the history
From 2.11.1 to 2.15.0
  • Loading branch information
flavienbwk authored Jul 1, 2024
2 parents bdc2b56 + 4bb0b85 commit ff9dc15
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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.11.1-blue)
![OpenSearch version](https://img.shields.io/badge/OpenSearch%20version-2.15.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.11.1
image: opensearchproject/opensearch:2.15.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 @@ -37,7 +37,7 @@ services:

os02:
restart: always
image: opensearchproject/opensearch:2.11.1
image: opensearchproject/opensearch:2.15.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 Down Expand Up @@ -67,7 +67,7 @@ services:

os03:
restart: always
image: opensearchproject/opensearch:2.11.1
image: opensearchproject/opensearch:2.15.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 Down Expand Up @@ -97,7 +97,7 @@ services:

kibana:
restart: always
image: opensearchproject/opensearch-dashboards:2.11.1
image: opensearchproject/opensearch-dashboards:2.15.0
environment:
OPENSEARCH_HOSTS: '["https://os01:9200","https://os02:9200","https://os03:9200"]' # must be a string with no spaces when specified as an environment variable
DISABLE_INSTALL_DEMO_CONFIG: "true"
Expand Down

0 comments on commit ff9dc15

Please sign in to comment.