Skip to content

Commit 959a57b

Browse files
Update to v9.0.1
1 parent 1325376 commit 959a57b

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ELASTIC_VERSION=9.0.0
1+
ELASTIC_VERSION=9.0.1
22

33
## Passwords for stack users
44
#

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Elastic stack (ELK) on Docker
22

3-
[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-9.0.0-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases)
3+
[![Elastic Stack version](https://img.shields.io/badge/Elastic%20Stack-9.0.1-00bfb3?style=flat&logo=elastic-stack)](https://www.elastic.co/blog/category/releases)
44
[![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)
55
[![Join the chat](https://badges.gitter.im/Join%20Chat.svg)](https://app.gitter.im/#/room/#deviantony_docker-elk:gitter.im)
66

elasticsearch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG ELASTIC_VERSION
22

33
# https://www.docker.elastic.co/
4-
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-9.0.0}
4+
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-9.0.1}
55

66
# Add your elasticsearch plugins setup here
77
# Example: RUN elasticsearch-plugin install analysis-icu

extensions/filebeat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ARG ELASTIC_VERSION
22

3-
FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-9.0.0}
3+
FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION:-9.0.1}

extensions/fleet/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG ELASTIC_VERSION
22

3-
FROM docker.elastic.co/elastic-agent/elastic-agent:${ELASTIC_VERSION:-9.0.0}
3+
FROM docker.elastic.co/elastic-agent/elastic-agent:${ELASTIC_VERSION:-9.0.1}
44

55
# Ensure the 'state' directory exists and is owned by the 'elastic-agent' user,
66
# otherwise mounting a named volume in that location creates a directory owned

extensions/heartbeat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ARG ELASTIC_VERSION
22

3-
FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-9.0.0}
3+
FROM docker.elastic.co/beats/heartbeat:${ELASTIC_VERSION:-9.0.1}

extensions/metricbeat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ARG ELASTIC_VERSION
22

3-
FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-9.0.0}
3+
FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION:-9.0.1}

kibana/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG ELASTIC_VERSION
22

33
# https://www.docker.elastic.co/
4-
FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-9.0.0}
4+
FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION:-9.0.1}
55

66
# Add your kibana plugins setup here
77
# Example: RUN kibana-plugin install <name|url>

logstash/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG ELASTIC_VERSION
22

33
# https://www.docker.elastic.co/
4-
FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-9.0.0}
4+
FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION:-9.0.1}
55

66
# Add your logstash plugins setup here
77
# Example: RUN logstash-plugin install logstash-filter-json

setup/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG ELASTIC_VERSION
22

33
# https://www.docker.elastic.co/
4-
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-9.0.0}
4+
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION:-9.0.1}
55

66
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)