Skip to content

jritsema/rpi-kibana

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 

Repository files navigation

rpi-kibana

This is just another forked Git repo of the Docker official image for kibana.

The aim of this repo is to make the official Docker image for kibana compatible with Raspberry Pi.

See the official Docker Hub page for the full readme on how to use this Docker image based on the official one.

(tested on a raspberry pi 3, Linux 4.4.50-v7+ armv7l GNU/Linux)

elasticsearch:
  image: jritsema/rpi-elasticsearch:2.4.0
  volumes:
    - ./elasticsearch:/data
  ports:
    - "9200:9200"
    - "9300:9300"
  environment:
    - CLUSTER_NAME=my-cluster
    - LISTEN=0.0.0.0
  restart: always

kibana:
  image: jritsema/rpi-kibana:4.6.1
  volumes:
    - ./kibana/config/:/opt/kibana/config/
  ports:
    - "5601:5601"
  links:
    - elasticsearch
  restart: always

Packages

No packages published

Languages

  • Shell 100.0%