Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/namshi/docker-kibana4
- Owner: namshi
- Created: 2014-11-18T18:50:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-18T05:27:31.000Z (over 8 years ago)
- Last Synced: 2024-04-14T12:15:19.317Z (7 months ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 3
- Watchers: 35
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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) ;-)