This repository provides everything you need to run Kafka 0.10.0.0 in Docker.
Based on spotify/docker-kafka with some additions from other branches.
The main hurdle of running Kafka in Docker is that it depends on Zookeeper. Compared to other Kafka docker images, this one runs both Zookeeper and Kafka in the same container. This means:
- No dependency on an external Zookeeper host, or linking to another container
- Zookeeper and Kafka are configured to work together out of the box
ADVERTISED_HOST: the host name part of theadvertised.listenersconfig. This will be advertised on ZooKeeperADVERTISED_PORT: port foradvertised.listenersADVERTISED_PROTO: protocol to advertise. Defaults toPLAINTEXTZK_CHROOT: Zookeeper chroot. Defaults to/- Any variable prefixed with
KAFKA_will be transformed to a config parameter name: e.g.KAFKA_AUTO_CREATE_TOPICS_ENABLE=falsewill setauto.create.topictofalse
docker run -p 2181:2181 -p 9092:9092 --env ADVERTISED_HOST=$(docker-machine ip $(docker-machine active)) --env ADVERTISED_PORT=9092 orbat/kafkaexport KAFKA=$(docker-machine ip $(docker-machine active)):9092
kafka-console-producer.sh --broker-list $KAFKA --topic testexport ZOOKEEPER=$(docker-machine ip $(docker-machine active)):2181
kafka-console-consumer.sh --zookeeper $ZOOKEEPER --topic testhttps://registry.hub.docker.com/u/orbat/kafka/
docker build -t orbat/kafka .
- Not particularily optimized for startup time