This repository contains a Dockerfile of ELK for Docker's trusted build published to the public Docker Registry.
- java:8-jre
- Elasticsearch 1.7.3
- Logstash 1.5.4
- Kibana 4.1.2
$ docker images
REPOSITORY TAG VIRTUAL SIZE
blacktop/elk latest 757 MB
blacktop/elk 4.2-beta 829 MB
blacktop/elk 3 542 MB
-
Install Docker.
-
Download trusted build from public Docker Registry:
docker pull blacktop/elk
$ docker build -t blacktop/elk github.com/blacktop/docker-elk
$ docker run -d --name elk -p 80:80 -p 9200:9200 blacktop/elk
Now navigate to $(docker inspect -f '{{ .NetworkSettings.IPAddress }}' elk)
- Install Homebrew
$ brew install caskroom/cask/brew-cask
$ brew cask install virtualbox
$ brew install docker
$ brew install docker-machine
$ docker-machine create --driver virtualbox dev
$ eval $(docker-machine env dev)
If you are using docker-machine
Navigate to $(docker-machine ip dev)
As a convenience you can add the docker-machine IP to you /etc/hosts file:
$ echo $(docker-machine ip dev) dockerhost | sudo tee -a /etc/hosts
Now you can navigate to http://dockerhost from your host
Let us index some data into Elasticsearch so we can try it out. To do this you can run config/test_index.py
which contains the following code:
from datetime import datetime
from elasticsearch import Elasticsearch
es = Elasticsearch(['http://<docker.container.ip>'])
for i in range(10000):
doc = {'author': 'kimchy', 'text': 'Elasticsearch: cool. bonsai cool.', 'timestamp': datetime.now()}
res = es.index(index="test-index", doc_type='tweet', id=i, body=doc)
# print(res['created'])
res = es.get(index="test-index", doc_type='tweet', id=1)
print(res['_source'])
es.indices.refresh(index="test-index")
res = es.search(index="test-index", body={"query": {"match_all": {}}})
print("Got %d Hits:" % res['hits']['total'])
for hit in res['hits']['hits']:
print("%(timestamp)s %(author)s: %(text)s" % hit["_source"])
-
Navigate to the docker-machine ip or docker ip in a web browser.
-
You will be prompted for a user/pass which defaults to:
-
user:
admin
-
password:
admin
-
Now enter
test-index
in the index field and select timestamp
- Go to the Discover Tab and see those absolutely gorgeous logs!
- Install/Run ELK
- Start Daemon and watch folder with supervisord
- Expose Logstash config folder as well as Nginx sites folder as Volumes
- Integrate with Bro-IDS