Last active
January 12, 2016 16:58
-
-
Save FGRibreau/36bdcbe46d86a3dabc5d to your computer and use it in GitHub Desktop.
Setup a Kafka node for development with two lines of docker
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
# tested with docker-machine on MacOSX | |
# start zookeeper | |
docker run -d --rm -it -p 2181:2181 digitalwonderland/zookeeper | |
# start kafka | |
docker run -d --rm -it -p 9000:9000 -e ZK_HOSTS="`docker-machine ip default`:2181" -e APPLICATION_SECRET=letmein sheepkiller/kafka-manager |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment