Created
January 1, 2023 17:47
-
-
Save pasdam/7dfad8590e6a22031acfce3d5c4211af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
kafka-ui: | |
image: provectuslabs/kafka-ui:v0.4.0 | |
container_name: kafka-ui | |
ports: | |
- "8080:8080" | |
restart: always | |
environment: | |
- AUTH_TYPE="LOGIN_FORM" | |
- SPRING_SECURITY_USER_NAME=kafkauser | |
- SPRING_SECURITY_USER_PASSWORD=super-secure-password | |
- KAFKA_CLUSTERS_0_NAME=staging | |
- KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=<bootstrap-servers-list> | |
- KAFKA_CLUSTERS_0_ZOOKEEPER=<zookeeper-servers-list> | |
- KAFKA_CLUSTERS_0_READONLY=false | |
- KAFKA_CLUSTERS_0_PROPERTIES_SECURITY_PROTOCOL=SSL | |
# - KAFKA_CLUSTERS_1_NAME=production | |
# - KAFKA_CLUSTERS_1_BOOTSTRAPSERVERS= | |
# - KAFKA_CLUSTERS_1_ZOOKEEPER= | |
# - KAFKA_CLUSTERS_1_READONLY=true | |
# - KAFKA_CLUSTERS_1_PROPERTIES_SECURITY_PROTOCOL=SSL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment