Created
July 14, 2019 19:01
-
-
Save spektom/f5e27001d17d165ce434d6bae561f574 to your computer and use it in GitHub Desktop.
docker-compose-kafka.yml
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: | |
zookeeper: | |
image: zookeeper | |
kafka: | |
image: wurstmeister/kafka | |
environment: | |
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | |
KAFKA_ADVERTISED_HOST_NAME: kafka | |
bash: | |
image: wurstmeister/kafka | |
command: sleep 100000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment