Sign inSign up

eliotk/docker-kibana

By eliotk

Updated almost 11 years ago

Image
1

519

eliotk/docker-kibana repository overview

Kibana Dockerfile

This repository contains a Dockerfile for the latest release of Kibana, which is currently version 4.

Base Docker Image
Installation
  1. Install Docker.

  2. Download automated build from public Docker Hub Registry: docker pull eliotk/docker-kibana

    (alternatively, you can build an image from the Dockerfile: docker build -t="eliotk/docker-kibana" github.com/eliotk/docker-kibana)

Usage

To start a Kibana container, run:

docker run -d -p 5601:5601 eliotk/docker-kibana

Kibana needs to use the 1.4 version of elasticsearch.

To run the Kibana container with a linked version of elasticsearch 1.4, first run an elasticsearch Docker container named "elasticsearch".

Pull the dockerfile/elasticsearch image if you don't have the latest 1.4 version: docker pull dockerfile/elasticsearch

docker run -d -p 9200:9200 -p 9300:9300 --name elasticsearch dockerfile/elasticsearch

Then run a Kibana container with a link to the elasticsearch container:

docker run -d -P --name kibana -p 5601:5601 --link elasticsearch:elasticsearch eliotk/docker-kibana

After few seconds, open http://<host>:5601 to see the result.

Tag summary

Content type

Image

Digest

sha256:7b653d04f

Size

308.1 MB

Last updated

almost 11 years ago

docker pull eliotk/docker-kibana