Last active
September 5, 2017 21:16
-
-
Save renanregis/2911d0caee94e9f157c45833d6a76b4f to your computer and use it in GitHub Desktop.
Kafka, Elastic 5.5 and Kibana 5.5
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: | |
kafka-cluster: | |
image: landoop/fast-data-dev:latest | |
environment: | |
ADV_HOST: 172.22.1.56 # Change to 192.168.99.100 if using Docker Toolbox | |
RUNTESTS: 0 # Disable Running tests so the cluster starts faster | |
ports: | |
- 2181:2181 # Zookeeper | |
- 3030:3030 # Landoop UI | |
- 8081-8083:8081-8083 # REST Proxy, Schema Registry, Kafka Connect ports | |
- 9581-9585:9581-9585 # JMX Ports | |
- 9092:9092 # Kafka Broker | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:5.5.2 | |
environment: ['http.host=0.0.0.0', 'transport.host=127.0.0.1', 'xpack.security.enabled=false'] | |
ports: ['127.0.0.1:9200:9200'] | |
kibana: | |
image: docker.elastic.co/kibana/kibana:5.5.2 | |
ports: ['127.0.0.1:5601:5601'] | |
depends_on: ['elasticsearch'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment