Is kibana included in elasticsearch docker image?

I would like to know if the kibana is included in elasticsearch docker image? Or do I need to pull a different docker image for kibana?

Hey @isemaj,
thanks for your request and welcome to our community.

No, Kibana is not on the same docker image as elasticsearch, you have to pull a different image for that:

docker pull docker.elastic.co/kibana/kibana:7.0.0

Here you can find more info:https://www.elastic.co/guide/en/kibana/current/docker.html

You can also run elasticsearch and kibana together using docker-compose, with a yml similar to:

version: '3'
services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0
    container_name: elasticsearch_7_0_0
    ports:
      - 9200:9200
  kibana:
    image: docker.elastic.co/kibana/kibana:7.0.0
    container_name: kibana_7_0_0
    ports:
      - 5601:5601

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.