From dac1e89a12a696403983d91161bbd23e8b8f1a71 Mon Sep 17 00:00:00 2001 From: antoineco <3299086+antoineco@users.noreply.github.com> Date: Sun, 9 Aug 2026 00:22:35 +0000 Subject: [PATCH] Update to v9.5.0 --- .env | 2 +- README.md | 2 +- elasticsearch/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 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.env b/.env index b8c47a4ca..74ab5d393 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -ELASTIC_VERSION=9.4.4 +ELASTIC_VERSION=9.5.0 ## Passwords for stack users # diff --git a/README.md b/README.md index a2207f9b4..7e7e9b6b4 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-9.4.4-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases) +[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-9.5.0-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases) [![Build Status](https://github.com/deviantony/docker-elk/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/deviantony/docker-elk/actions/workflows/ci.yml?query=branch%3Amain) Run the latest version of the [Elastic stack][elk-stack] with Docker and Docker Compose. diff --git a/elasticsearch/Dockerfile b/elasticsearch/Dockerfile index e03fe732b..474c204ec 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:-9.4.4} +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-9.5.0} # Add your elasticsearch plugins setup here # Example: RUN elasticsearch-plugin install analysis-icu diff --git a/extensions/filebeat/Dockerfile b/extensions/filebeat/Dockerfile index 701f3a200..66d5bc9cf 100644 --- a/extensions/filebeat/Dockerfile +++ b/extensions/filebeat/Dockerfile @@ -1,3 +1,3 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-9.4.4} +FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-9.5.0} diff --git a/extensions/fleet/Dockerfile b/extensions/fleet/Dockerfile index 65f3883dc..86e3a28bf 100644 --- a/extensions/fleet/Dockerfile +++ b/extensions/fleet/Dockerfile @@ -1,6 +1,6 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/elastic-agent/elastic-agent:${ELASTIC_VERSION:-9.4.4} +FROM docker.elastic.co/elastic-agent/elastic-agent:${ELASTIC_VERSION:-9.5.0} # 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 413266e6e..702cc86e7 100644 --- a/extensions/heartbeat/Dockerfile +++ b/extensions/heartbeat/Dockerfile @@ -1,3 +1,3 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-9.4.4} +FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-9.5.0} diff --git a/extensions/metricbeat/Dockerfile b/extensions/metricbeat/Dockerfile index 5b05c1364..6679b447b 100644 --- a/extensions/metricbeat/Dockerfile +++ b/extensions/metricbeat/Dockerfile @@ -1,3 +1,3 @@ ARG ELASTIC_VERSION -FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-9.4.4} +FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-9.5.0} diff --git a/kibana/Dockerfile b/kibana/Dockerfile index 03cfa29af..46cb1768e 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:-9.4.4} +FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-9.5.0} # Add your kibana plugins setup here # Example: RUN kibana-plugin install diff --git a/logstash/Dockerfile b/logstash/Dockerfile index bbb350b43..9dee67da4 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:-9.4.4} +FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-9.5.0} # Add your logstash plugins setup here # Example: RUN logstash-plugin install logstash-filter-json diff --git a/setup/Dockerfile b/setup/Dockerfile index cf33afc34..d7b724cef 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:-9.4.4} +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-9.5.0} ENTRYPOINT ["/entrypoint.sh"]