Skip to content
This repository has been archived by the owner on Oct 14, 2020. It is now read-only.

gameontext/docker-kafka

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Kafka in Docker

This repository provides everything you need to run Kafka in Docker.

For convenience also contains a packaged proxy that can be used to get data from a legacy Kafka 7 cluster into a dockerized Kafka 8.

Why?

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

Run

docker run -p 2181:2181 -p 9092:9092 --env ADVERTISED_HOST=`docker-machine ip \`docker-machine active\`` --env ADVERTISED_PORT=9092 spotify/kafka
export KAFKA=`docker-machine ip \`docker-machine active\``:9092
kafka-console-producer.sh --broker-list $KAFKA --topic test
export ZOOKEEPER=`docker-machine ip \`docker-machine active\``:2181
kafka-console-consumer.sh --zookeeper $ZOOKEEPER --topic test

In the box

  • gameontext/docker-kafka

    The docker image with both Kafka and Zookeeper. Built from the kafka directory.

Public Builds

https://hub.docker.com/r/gameontext/docker-kafka/

Build from Source

docker build -t gameontext/docker-kafka kafka/

Todo

  • Not particularily optimzed for startup time.
  • Better docs

Packages

No packages published

Languages

  • Shell 100.0%