Created
January 28, 2024 13:26
-
-
Save omernaci/3ca7e68c117bd108fb8f643092bcbd57 to your computer and use it in GitHub Desktop.
Zookeeper, Kafka, Schema Registry, Kafka UI
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' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:6.2.0 | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 | |
volumes: | |
- zookeeper_data:/var/lib/zookeeper/data | |
- zookeeper_logs:/var/lib/zookeeper/log | |
kafka: | |
image: confluentinc/cp-kafka:6.2.0 | |
depends_on: | |
- zookeeper | |
ports: | |
- "9092:9092" | |
environment: | |
KAFKA_BROKER_ID: 1 | |
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | |
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092 | |
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0 | |
volumes: | |
- kafka_data:/var/lib/kafka/data | |
schema-registry: | |
image: confluentinc/cp-schema-registry:6.2.0 | |
depends_on: | |
- zookeeper | |
- kafka | |
ports: | |
- "8081:8081" | |
environment: | |
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: zookeeper:2181 | |
SCHEMA_REGISTRY_HOST_NAME: schema-registry | |
kafka-ui: | |
image: provectuslabs/kafka-ui:latest | |
ports: | |
- "8080:8080" | |
environment: | |
KAFKA_CLUSTERS_0_NAME: local | |
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:9092 | |
volumes: | |
zookeeper_data: | |
zookeeper_logs: | |
kafka_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment