Sign inSign up

nshou/elasticsearch-kibana

By nshou

Updated over 2 years ago

Elasticsearch-8.10.4 Kibana-8.10.4

Image
151

1M+

nshou/elasticsearch-kibana repository overview

Elasticsearch and Kibana in one container

Simple and lightweight docker image for previewing Elasticsearch and Kibana.

You can connect to Elasticsearch through https://localhost:9200 and explore Kibana via https://localhost:5601

The password for the instance will be output to the console at first launch.

Usage

Dockerhub

docker run -d -p 9200:9200 -p 5601:5601 nshou/elasticsearch-kibana

Github Container Registry

docker run -d -p 9200:9200 -p 5601:5601 ghcr.io/nshou/elasticsearch-kibana

Resetting elastic user password

If for some reason your password does not get shows as being reset in the console you can run the following command inside of the container.

elasticsearch-${EK_VERSION}/bin/elasticsearch-reset-password \
      -v \
      --url "https://localhost:9200" \
      -u elastic \
      -b \
      -i \
      -E xpack.security.http.ssl.enabled=true \
      -E xpack.security.http.ssl.certificate=/home/elastic/elasticsearch-${EK_VERSION}/config/certs/instance/instance.crt \
      -E xpack.security.http.ssl.key=/home/elastic/elasticsearch-${EK_VERSION}/config/certs/instance/instance.key \
      -E xpack.security.http.ssl.certificate_authorities=/home/elastic/elasticsearch-${EK_VERSION}/config/certs/ca/ca.crt
Enable/Disable Security Features

If you wish to run this image with no security features enabled, you can toggle SSL/TLS mode with the SSL_MODE ENV parameter.

# Docker Image
docker run -d -p 9200:9200 -p 5601:5601 -e SSL_MODE=false nshou/elasticsearch-kibana

# Github Container Registry
docker run -d -p 9200:9200 -p 5601:5601 -e SSL_MODE=false ghcr.io/nshou/elasticsearch-kibana
Tags
TagElasticsearchKibana
latest8.10.48.10.4
kibana77.17.97.17.9
kibana66.5.46.5.4
kibana55.6.65.6.6
kibana42.4.14.6.2
kibana31.7.43.1.3

Tag summary

Content type

Image

Digest

sha256:dd954139b

Size

951.4 MB

Last updated

over 2 years ago

docker pull nshou/elasticsearch-kibana