docker-elk-ssl/docker-compose.yml
tony 17cdd5fd22 Replaced logstash image with latest official image.
Manages elasticsearch container using the latest official image inside this repository.
Manages the kibana container using the latest official image inside this repository.
Updated README.
2015-07-23 14:03:42 +02:00

20 lines
348 B
YAML

elasticsearch:
build: elasticsearch/
ports:
- "9200:9200"
logstash:
image: logstash:latest
command: logstash -f /etc/logstash/conf.d/logstash.conf
volumes:
- logstash-conf:/etc/logstash/conf.d
ports:
- "5000:5000"
links:
- elasticsearch
kibana:
build: kibana/
ports:
- "5601:5601"
links:
- elasticsearch