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

Latest commit

 

History

History
15 lines (10 loc) · 1.1 KB

README.md

File metadata and controls

15 lines (10 loc) · 1.1 KB

kafka-minimal

CircleCI Codacy Badge

A minimal docker image to run Apache Kafka for testing purposes

Run

docker run -it -p 2181:2181 -p 9092:9092 codacy/kafka-minimal

If you want to set another host name for the advertised.host.name setting or expose another port :

docker run -it -p 2181:2181 -p <other_port>:9092 -e ADVERTISED_HOST=<other_hostname> -e ADVERTISED_PORT=<other_port> codacy/kafka-minimal