elastic / elasticsearch-docker

Official Elasticsearch Docker image
Apache License 2.0
791 stars 240 forks source link

Docker container ElasticSearch + Kibana together in single Container #229

Closed balasgit closed 5 years ago

balasgit commented 5 years ago

Bug Description

I have pulled latest docker image for elasticSearch but i dont see any Readme etc how to build and install , start the Elastic Search

Any pointers

Feature Description

xeraa commented 5 years ago

From the readme:

Documentation can be found on the Elastic web site.

There you have a description on how to start the container: docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:6.5.4

To add Kibana you need to get the Kibana image and start that as well.

To get started with the orchestration either look at our Docker Compose example or our Helm charts. Since this seems to be more of a question on how to use the images rather than a bug / feature request, please post further questions on Discuss.