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

chore(docker): bump base version of elasticsearch for docker image #2565

Merged
merged 1 commit into from
Nov 29, 2024
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 .github/workflows/elasticsearch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
DOCKER_PLATFORMS: "linux/amd64,linux/arm64"
ELASTICSEARCH_VERSION: "7.16.2"
ELASTICSEARCH_VERSION: "7.17.25"

jobs:
build-and-push:
Expand Down
2 changes: 1 addition & 1 deletion docker/images/elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG ELASTICSEARCH_VERSION="7.16.2"
ARG ELASTICSEARCH_VERSION="7.17.25"
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTICSEARCH_VERSION}

LABEL maintainer="kuzzle" contact="<[email protected]>"
Expand Down
8 changes: 4 additions & 4 deletions docker/images/elasticsearch/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Elasticsearch

This container is built from [Elasticsearch official 7.10 image](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html) with a few modifications:
This container is built from [Elasticsearch official 7.17 image](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/docker.html) with a few modifications:

* All xpack plugins are disabled by default
* `jvm.options` file is modified to remove the jvm heap size settings, thus allowing to set them with `ES_JAVA_OPTS` environment variable (default to 512m).
* The GeoIP downloader is disabled by default
- All xpack plugins are disabled by default
- `jvm.options` file is modified to remove the jvm heap size settings, thus allowing to set them with `ES_JAVA_OPTS` environment variable (default to 512m).
- The GeoIP downloader is disabled by default
Loading