Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/namshi/docker-kibana4

A docker container to run kibana, compatible with found.no.
https://github.com/namshi/docker-kibana4

Last synced: 1 day ago
JSON representation

A docker container to run kibana, compatible with found.no.

Awesome Lists containing this project

README

        

# namshi/docker-kibana4

A docker container to run kibana, compatible with [found.no](https://found.no/).

## Installation

```
docker build -t namshi/docker-kibana4 .
```

## Running

```
fig up
```

or, if you wanna be fancy:

```
docker run -ti -p 5601:5601 namshi/docker-kibana4
```

This will connect to an elasticsearch supposed
to run on `localhost:9200`. If you want to connect
to an ES instance located somewhere else
just specify it through an environment variable:

```
docker run -ti -p 5601:5601 -e elasticsearch_host=https://example.com:9200/ namshi/docker-kibana4
```
Also if you don't need to expose the elasticsearch host, you can set it up as an env variable and mount it to the settings folder.

For example
```
docker run -ti -p 5601:5601 -v //:/settings/setup-env.sh namshi/docker-kibana4
```
or, alternatively, configure it in the fig file:

```
web:
build: .
ports:
- "5601:5601"
environment:
elasticsearch_host: https://example.org:9200
```

## Credits

All work from [Ayham](https://github.com/ayhamalzoubi) ;-)