Update to v8.19.7

This commit is contained in:
docker-elk-updater[bot]
2025-11-16 00:34:02 +00:00
committed by GitHub
parent 1c71346212
commit 31db22c063
11 changed files with 11 additions and 11 deletions

2
.env
View File

@@ -1,4 +1,4 @@
ELASTIC_VERSION=8.19.6
ELASTIC_VERSION=8.19.7
## Passwords for stack users
#

View File

@@ -1,6 +1,6 @@
# Elastic stack (ELK) on Docker
[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-8.19.6-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases)
[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-8.19.7-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=release-8.x)](https://github.com/deviantony/docker-elk/actions/workflows/ci.yml?query=branch%3Arelease-8.x)
Run the version 8.x of the [Elastic stack][elk-stack] with Docker and Docker Compose.

View File

@@ -1,7 +1,7 @@
ARG ELASTIC_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.19.7}
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu

View File

@@ -1,4 +1,4 @@
ARG ELASTIC_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION:-8.19.7}

View File

@@ -1,3 +1,3 @@
ARG ELASTIC_VERSION
FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-8.19.7}

View File

@@ -1,6 +1,6 @@
ARG ELASTIC_VERSION
FROM docker.elastic.co/elastic-agent/elastic-agent:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/elastic-agent/elastic-agent:${ELASTIC_VERSION:-8.19.7}
# 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

View File

@@ -1,3 +1,3 @@
ARG ELASTIC_VERSION
FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-8.19.7}

View File

@@ -1,3 +1,3 @@
ARG ELASTIC_VERSION
FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-8.19.7}

View File

@@ -1,7 +1,7 @@
ARG ELASTIC_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-8.19.7}
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>

View File

@@ -1,7 +1,7 @@
ARG ELASTIC_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-8.19.7}
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json

View File

@@ -1,6 +1,6 @@
ARG ELASTIC_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.19.6}
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.19.7}
ENTRYPOINT ["/entrypoint.sh"]