Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@FGRibreau
Last active January 12, 2016 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FGRibreau/36bdcbe46d86a3dabc5d to your computer and use it in GitHub Desktop.
Save FGRibreau/36bdcbe46d86a3dabc5d to your computer and use it in GitHub Desktop.
Setup a Kafka node for development with two lines of docker
# 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