Skip to content

Commit 888e686

Browse files
committed
kafka-ui was added to docker-compose.yml
1 parent c44ff2d commit 888e686

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docker-compose.yml

+20
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,26 @@ services:
104104

105105
# TODO kafka UI: curl -L https://releases.conduktor.io/quick-start -o docker-compose.yml
106106

107+
kafka-ui:
108+
container_name: kafka-ui
109+
image: provectuslabs/kafka-ui:latest
110+
depends_on:
111+
db:
112+
condition: service_healthy
113+
kafka1:
114+
condition: service_healthy
115+
kafka2:
116+
condition: service_healthy
117+
kafka3:
118+
condition: service_healthy
119+
ports:
120+
- ${KAFKA_UI_PORT}:8080
121+
environment:
122+
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: ${DOCKER_HOST_IP}:${KAFKA1_EXTERNAL_PORT},${DOCKER_HOST_IP}:${KAFKA2_EXTERNAL_PORT},${DOCKER_HOST_IP}:${KAFKA3_EXTERNAL_PORT}
123+
AUTH_TYPE: "DISABLED"
124+
DYNAMIC_CONFIG_ENABLED: 'true'
125+
126+
107127
debezium:
108128
image: debezium/connect:2.5
109129
container_name: debezium

0 commit comments

Comments
 (0)