Created
February 13, 2016 22:21
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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