From 1325b1d6bb3a3a077264bbba1dd6da0f6fd5503e Mon Sep 17 00:00:00 2001 From: Florian Maunier Date: Wed, 27 Nov 2024 13:33:32 +0100 Subject: [PATCH] chore(docker): bump base version of elasticsearch for docker image --- .github/workflows/elasticsearch.yml | 2 +- docker/images/elasticsearch/Dockerfile | 2 +- docker/images/elasticsearch/README.md | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/elasticsearch.yml b/.github/workflows/elasticsearch.yml index 1ea3914bf2..0e64103f3d 100644 --- a/.github/workflows/elasticsearch.yml +++ b/.github/workflows/elasticsearch.yml @@ -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: diff --git a/docker/images/elasticsearch/Dockerfile b/docker/images/elasticsearch/Dockerfile index fe8d79ff46..f043be878a 100644 --- a/docker/images/elasticsearch/Dockerfile +++ b/docker/images/elasticsearch/Dockerfile @@ -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="" diff --git a/docker/images/elasticsearch/README.md b/docker/images/elasticsearch/README.md index 95b9c18d44..ee00bb991a 100644 --- a/docker/images/elasticsearch/README.md +++ b/docker/images/elasticsearch/README.md @@ -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