|
@@ -1,27 +1,54 @@
|
|
|
---
|
|
|
version: '2'
|
|
|
services:
|
|
|
- zookeeper:
|
|
|
+
|
|
|
+ kafka-ui:
|
|
|
+ container_name: kafka-ui-api
|
|
|
+ image: kafka-ui-api:latest
|
|
|
+ ports:
|
|
|
+ - 8080:8080
|
|
|
+ depends_on:
|
|
|
+ - zookeeper0
|
|
|
+ - zookeeper1
|
|
|
+ - kafka0
|
|
|
+ - kafka1
|
|
|
+
|
|
|
+ zookeeper0:
|
|
|
image: confluentinc/cp-zookeeper:5.1.0
|
|
|
environment:
|
|
|
ZOOKEEPER_CLIENT_PORT: 2181
|
|
|
ZOOKEEPER_TICK_TIME: 2000
|
|
|
- ports:
|
|
|
- - 2181:2181
|
|
|
|
|
|
- kafka:
|
|
|
+ kafka0:
|
|
|
image: confluentinc/cp-kafka:5.1.0
|
|
|
depends_on:
|
|
|
- - zookeeper
|
|
|
- ports:
|
|
|
- - 9092:9092
|
|
|
- - 9997:9997
|
|
|
+ - zookeeper0
|
|
|
+ environment:
|
|
|
+ KAFKA_BROKER_ID: 1
|
|
|
+ KAFKA_ZOOKEEPER_CONNECT: zookeeper0:2181
|
|
|
+ KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka0:29092,PLAINTEXT_HOST://localhost:9092
|
|
|
+ KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
|
|
|
+ KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
|
|
|
+ KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
|
|
|
+ JMX_PORT: 9997
|
|
|
+ KAFKA_JMX_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=kafka0 -Dcom.sun.management.jmxremote.rmi.port=9997
|
|
|
+
|
|
|
+ zookeeper1:
|
|
|
+ image: confluentinc/cp-zookeeper:5.1.0
|
|
|
+ environment:
|
|
|
+ ZOOKEEPER_CLIENT_PORT: 2181
|
|
|
+ ZOOKEEPER_TICK_TIME: 2000
|
|
|
+
|
|
|
+ kafka1:
|
|
|
+ image: confluentinc/cp-kafka:5.1.0
|
|
|
+ depends_on:
|
|
|
+ - zookeeper1
|
|
|
environment:
|
|
|
KAFKA_BROKER_ID: 1
|
|
|
- KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
|
|
|
- KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092
|
|
|
+ KAFKA_ZOOKEEPER_CONNECT: zookeeper1:2181
|
|
|
+ KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka1:29092,PLAINTEXT_HOST://localhost:9092
|
|
|
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
|
|
|
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
|
|
|
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
|
|
|
JMX_PORT: 9997
|
|
|
- KAFKA_JMX_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=127.0.0.1 -Dcom.sun.management.jmxremote.rmi.port=9997
|
|
|
+ KAFKA_JMX_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=kafka1 -Dcom.sun.management.jmxremote.rmi.port=9997
|