Return to Image List

kafka

Apache Kafka

Apache Kafka is a distributed streaming platform that lets one endpoint in a workload produce messages, while other endpoints consume them. One or more consumers may subscribe to messages under a topic that a producer publishes. This architecture facilitates communication between loosely coupled applications in an enterprise.

See kafka.apache.org for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
3.9.2 docker pull icr.io/ibmz/kafka@sha256:e2de46ce362f70b9254fdd1c2bb8f1f22232dba939500cdbae53f64f9d9f66ef Vulnerability Report03-02-2026
Version Pull String Security (IBM Cloud) Created

Usage Notes

Kafka Quick Start

Run

docker run -d --name kafka -p 9092:9092 kafka

Test

docker run --rm --name kafka -p 9092:9092 -e KAFKA_RUN_TESTS=true kafka

Check Logs

docker logs -f kafka

Stop

docker stop kafka
docker rm kafka