Last active
October 27, 2024 19:25
-
-
Save gbzarelli/2aa4d0cf1d8630dfe13d317bb0bd666b to your computer and use it in GitHub Desktop.
Kafka - docker-compose with Kafka-UI #helpdev-blog
This file contains 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: '3.5' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:7.2.1 | |
hostname: zookeeper | |
container_name: zookeeper | |
ports: | |
- "2181:2181" | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 | |
ZOOKEEPER_TICK_TIME: 2000 | |
kafka: | |
image: confluentinc/cp-server:7.2.1 | |
hostname: kafka | |
container_name: kafka | |
depends_on: | |
- zookeeper | |
ports: | |
- "9092:9092" | |
- "9997:9997" | |
environment: | |
KAFKA_BROKER_ID: 1 | |
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181' | |
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT | |
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092 | |
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0 | |
KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_CONFLUENT_BALANCER_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1 | |
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1 | |
KAFKA_JMX_PORT: 9997 | |
KAFKA_JMX_HOSTNAME: kafka | |
kafka-init-topics: | |
image: confluentinc/cp-kafka:7.2.1 | |
volumes: | |
- ./message.json:/data/message.json | |
depends_on: | |
- kafka | |
command: "bash -c 'echo Waiting for Kafka to be ready... && \ | |
cub kafka-ready -b kafka:29092 1 30 && \ | |
kafka-topics --create --topic users --partitions 3 --replication-factor 1 --if-not-exists --bootstrap-server kafka:29092 && \ | |
kafka-topics --create --topic messages --partitions 2 --replication-factor 1 --if-not-exists --bootstrap-server kafka:29092 && \ | |
kafka-console-producer --bootstrap-server kafka:29092 --topic users < /data/message.json'" | |
kafka-ui: | |
container_name: kafka-ui | |
image: provectuslabs/kafka-ui:latest | |
ports: | |
- 9020:8080 | |
environment: | |
AUTH_TYPE: DISABLED | |
KAFKA_CLUSTERS_0_NAME: local | |
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:29092 | |
KAFKA_CLUSTERS_0_ZOOKEEPER: zookeeper:2181 | |
depends_on: | |
- kafka |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment