Last active
December 8, 2017 18:26
-
-
Save Jaskaranbir/440d9c8203755b2f6b7f8b9dadaf2f1d to your computer and use it in GitHub Desktop.
Kafka Docker Test
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: '3' | |
services: | |
kafka: | |
image: wurstmeister/kafka | |
environment: | |
- KAFKA_ADVERTISED_HOST_NAME=localhost | |
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181 | |
links: | |
- zookeeper | |
ports: | |
- 9200:9200 | |
zookeeper: | |
image: zookeeper | |
ports: | |
- 2181:2181 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment