Skip to content

Instantly share code, notes, and snippets.

@rafaelfelix
Created February 13, 2016 22:21
Show Gist options
  • Save rafaelfelix/0555af72cbaeae229776 to your computer and use it in GitHub Desktop.
Save rafaelfelix/0555af72cbaeae229776 to your computer and use it in GitHub Desktop.
spin up ELK using official docker images (compatible with docker compose 1.6.0+ and docker-engine 1.10+) - NOT YET FINISHED
version: '2'
services:
kibana:
image: kibana
links:
- elasticsearch
environment:
- ELASTICSEARCH_URL=http://elk_elasticsearch_1:9200
elasticsearch:
image: elasticsearch:2.2
ports:
- 9200
- 9300
volumes:
# - ./esconfig:/usr/share/elasticsearch/config
- ./esdata:/usr/share/elasticsearch/data
logstash:
image: logstash
volumes:
- ./logstash:/config-dir
# command: logstash -f /config-dir/logstash.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment