You are invited to contribute new features, fixes, or updates, large or small; I am always thrilled to receive pull requests, and do my best to process them as fast as I can.
Kafka Manager images come in two flavors:
- stable: Build from latest Kafka Manager repository release.
- latest: Periodically assembled master builds. Better not to use in production.
docker run -d \
-p 9000:9000 \
-e ZK_HOSTS="localhost:2181" \
hlebalbau/kafka-manager:stable \
-Dpidfile.path=/dev/null
version: '3.6'
services:
kafka_manager:
image: hlebalbau/kafka-manager:stable
ports:
- "9000:9000"
environment:
ZK_HOSTS: "zoo:2181"
APPLICATION_SECRET: "random-secret"
command: -Dpidfile.path=/dev/null
Add the following env variables if you want to protect the web UI with basic authentication:
KAFKA_MANAGER_AUTH_ENABLED: "true"
KAFKA_MANAGER_USERNAME: username
KAFKA_MANAGER_PASSWORD: password
If you have any problems with or questions about this image, please contact us through a GitHub issue.