jrottenberg/kafka-standalone
Run a standalone kafka daemon along with the required zookeeper
1.2K
Based on Kafka docker.
Intent was to keep it as simple as possible, just to let developer easily interact with kafka without the need to run docker-compose.
It's not following docker best practices (one service per container), but it allow to get you up and running with one container.
You can pass a topic at container creation by passing the environment variable TOPIC
docker run -it -e TOPIC=mine jrottenberg/kafka-standalone
You can specify the passing the environment variable TOPIC
docker run -d -e ADVERTISED_HOSTNAME=$(hostname -f) -p 9092:9092 -p 2181:2181 jrottenberg/kafka-standalone
Just don't ;-)
docker pull jrottenberg/kafka-standalone