From da07042e4e69ef29f7997e8b40ba6ff7f176ffd6 Mon Sep 17 00:00:00 2001 From: "docker-elk-updater[bot]" <93581810+docker-elk-updater[bot]@users.noreply.github.com> Date: Sun, 27 Oct 2024 00:29:17 +0000 Subject: [PATCH] Update to v7.17.25 --- .env | 2 +- README.md | 4 ++-- elasticsearch/Dockerfile | 2 +- extensions/enterprise-search/Dockerfile | 2 +- extensions/filebeat/Dockerfile | 2 +- extensions/fleet/Dockerfile | 2 +- extensions/heartbeat/Dockerfile | 2 +- extensions/metricbeat/Dockerfile | 2 +- kibana/Dockerfile | 2 +- logstash/Dockerfile | 2 +- setup/Dockerfile | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.env b/.env index 40c80c1d1..497f8e0a1 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -ELASTIC_VERSION=7.17.24 +ELASTIC_VERSION=7.17.25 ## Passwords for stack users # diff --git a/README.md b/README.md index 01f492a5e..9017cebbf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Elastic stack (ELK) on Docker -[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-7.17.24-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases) +[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-7.17.25-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases) [![Build Status](https://github.com/deviantony/docker-elk/workflows/CI/badge.svg?branch=release-7.x)](https://github.com/deviantony/docker-elk/actions?query=workflow%3ACI+branch%3Arelease-7.x) [![Join the chat](https://badges.gitter.im/Join%20Chat.svg)](https://app.gitter.im/#/room/#deviantony_docker-elk:gitter.im) @@ -268,7 +268,7 @@ Create an index pattern via the Kibana API: ```sh curl -XPOST -D- 'http://localhost:5601/api/saved_objects/index-pattern' \ -H 'Content-Type: application/json' \ - -H 'kbn-version: 7.17.24' \ + -H 'kbn-version: 7.17.25' \ -u elastic: \ -d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}' ``` diff --git a/elasticsearch/Dockerfile b/elasticsearch/Dockerfile index 7a2c35ce6..35aed2060 100644 --- a/elasticsearch/Dockerfile +++ b/elasticsearch/Dockerfile @@ -1,7 +1,7 @@ ARG ELASTIC_VERSION # https://www.docker.elastic.co/ -FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-7.17.25} # Add your elasticsearch plugins setup here # Example: RUN elasticsearch-plugin install analysis-icu diff --git a/extensions/enterprise-search/Dockerfile b/extensions/enterprise-search/Dockerfile index cde22cb8c..be3ae83ab 100644 --- a/extensions/enterprise-search/Dockerfile +++ b/extensions/enterprise-search/Dockerfile @@ -1,4 +1,4 @@ ARG ELASTIC_VERSION # https://www.docker.elastic.co/ -FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION:-7.17.25} diff --git a/extensions/filebeat/Dockerfile b/extensions/filebeat/Dockerfile index 0aeec7f23..e3be3f369 100644 --- a/extensions/filebeat/Dockerfile +++ b/extensions/filebeat/Dockerfile @@ -1,3 +1,3 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-7.17.25} diff --git a/extensions/fleet/Dockerfile b/extensions/fleet/Dockerfile index fb1e83ae4..a7646e610 100644 --- a/extensions/fleet/Dockerfile +++ b/extensions/fleet/Dockerfile @@ -1,6 +1,6 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/beats/elastic-agent:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/beats/elastic-agent:${ELASTIC_VERSION:-7.17.25} # Ensure the 'state' directory exists and is owned by the 'elastic-agent' user, # otherwise mounting a named volume in that location creates a directory owned diff --git a/extensions/heartbeat/Dockerfile b/extensions/heartbeat/Dockerfile index cce02a909..67ece4f67 100644 --- a/extensions/heartbeat/Dockerfile +++ b/extensions/heartbeat/Dockerfile @@ -1,3 +1,3 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-7.17.25} diff --git a/extensions/metricbeat/Dockerfile b/extensions/metricbeat/Dockerfile index 285acceb8..7d702d2c5 100644 --- a/extensions/metricbeat/Dockerfile +++ b/extensions/metricbeat/Dockerfile @@ -1,3 +1,3 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-7.17.25} diff --git a/kibana/Dockerfile b/kibana/Dockerfile index 2961bb149..dddf696d6 100644 --- a/kibana/Dockerfile +++ b/kibana/Dockerfile @@ -1,7 +1,7 @@ ARG ELASTIC_VERSION # https://www.docker.elastic.co/ -FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-7.17.25} # Add your kibana plugins setup here # Example: RUN kibana-plugin install diff --git a/logstash/Dockerfile b/logstash/Dockerfile index c90c7ad00..5eb531533 100644 --- a/logstash/Dockerfile +++ b/logstash/Dockerfile @@ -1,7 +1,7 @@ ARG ELASTIC_VERSION # https://www.docker.elastic.co/ -FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-7.17.25} # Add your logstash plugins setup here # Example: RUN logstash-plugin install logstash-filter-json diff --git a/setup/Dockerfile b/setup/Dockerfile index b060ebddb..73e1b5474 100644 --- a/setup/Dockerfile +++ b/setup/Dockerfile @@ -1,6 +1,6 @@ ARG ELASTIC_VERSION # https://www.docker.elastic.co/ -FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-7.17.24} +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-7.17.25} ENTRYPOINT ["/entrypoint.sh"]