Skip to content

Bump elasticsearch from 7.16.3 to 8.17.3 in /docker/elasticsearch #5964

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion docker/elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM elasticsearch:7.16.3
FROM elasticsearch:8.17.3

ENV discovery.type=single-node

ENV ES_JAVA_OPTS='-Xms512m -Xmx512m'

ENV xpack.security.enabled=false

Copy link
Contributor

@crobert-1 crobert-1 Mar 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For v7.X this was disabled by default

For v8.X this is enabled by default

The elasticsearch receiver fails to connect to the docker image if this is enabled as it's not configured with authentication information, and there's no longer any default password for the elastic (default) user.

EXPOSE 9200
Loading