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

Update to v8.17.1 #1050

Merged
merged 1 commit into from
Jan 26, 2025
Merged
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
Update to v8.17.1
antoineco authored and github-actions[bot] committed Jan 26, 2025
commit 6cc8f50fe5064c764313adc5062b3a9cfec64864
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ELASTIC_VERSION=8.17.0
ELASTIC_VERSION=8.17.1

## Passwords for stack users
#
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Elastic stack (ELK) on Docker

[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-8.17.0-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases)
[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-8.17.1-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=tls)](https://github.com/deviantony/docker-elk/actions?query=workflow%3ACI+branch%3Atls)
[![Join the chat](https://badges.gitter.im/Join%20Chat.svg)](https://app.gitter.im/#/room/#deviantony_docker-elk:gitter.im)

2 changes: 1 addition & 1 deletion elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG ELASTIC_VERSION

# https://www.docker.elastic.co/
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.17.1}

# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
2 changes: 1 addition & 1 deletion extensions/enterprise-search/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG ELASTIC_VERSION

# https://www.docker.elastic.co/
FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION:-8.17.1}
2 changes: 1 addition & 1 deletion extensions/filebeat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ARG ELASTIC_VERSION

FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-8.17.1}
2 changes: 1 addition & 1 deletion extensions/fleet/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ELASTIC_VERSION

FROM docker.elastic.co/beats/elastic-agent:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/beats/elastic-agent:${ELASTIC_VERSION:-8.17.1}

# 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
2 changes: 1 addition & 1 deletion extensions/heartbeat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ARG ELASTIC_VERSION

FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-8.17.1}
2 changes: 1 addition & 1 deletion extensions/metricbeat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ARG ELASTIC_VERSION

FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-8.17.1}
2 changes: 1 addition & 1 deletion kibana/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG ELASTIC_VERSION

# https://www.docker.elastic.co/
FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-8.17.1}

# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
2 changes: 1 addition & 1 deletion logstash/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG ELASTIC_VERSION

# https://www.docker.elastic.co/
FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-8.17.1}

# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json
2 changes: 1 addition & 1 deletion setup/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ELASTIC_VERSION

# https://www.docker.elastic.co/
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.17.0}
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-8.17.1}

ENTRYPOINT ["/entrypoint.sh"]