Docker Hub
https://hub.docker.com/r/bitnami/kafkaThe Bitnami Apache Kafka docker image disables the PLAINTEXT listener for security reasons. You can enable the PLAINTEXT listener by adding the next environment variable, but remember that this configuration is not recommended for production. ALLOW_PLAINTEXT_LISTENER=yes
Install Kafka Using Docker
blogflow.danelleandryan.us › install-kafka-usingDec 23, 2021 · Apache Kafka + Zookeeper docker image selection. First, you have to decide on the vendor of the Apache Kafka image for container. The requirements of each specific project differ in the level of security and reliability of the solution, in some cases, of course, you will have to build your own image, but for most projects it will be reasonable ...
kafkacat Docker image - hub.docker.com
hub.docker.com › r › confluentinckafkacat Docker image. kafkacat is a commandline tool for interacting with Kafka brokers. It can be used to produce and consume messages, as well as query metadata. The docker image for kafkacat would typically be used in conjunction with Kafka running in a docker environment. The important thing is to understand the networking context of the ...
Kafka in Docker - hub.docker.com
https://hub.docker.com/r/spotify/kafka/#!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