Created
June 6, 2022 19:16
-
-
Save kumar-de/1b4e21eb6514eb63902da40c99b81f55 to your computer and use it in GitHub Desktop.
docker-compose file for Kafka, HBase and Zookeeper together #zk #hbase #kafka
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:7.0.1 | |
container_name: zookeeper | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 | |
ZOOKEEPER_TICK_TIME: 2000 | |
hbase-master: | |
image: blueskyareahm/hbase-base:2.1.3 | |
command: master | |
ports: | |
- 16000:16000 | |
- 16010:16010 | |
depends_on: | |
- zookeeper | |
hbase-regionserver: | |
image: blueskyareahm/hbase-base:2.1.3 | |
command: regionserver | |
ports: | |
- 16030:16030 | |
- 16201:16201 | |
- 16301:16301 | |
depends_on: | |
- zookeeper | |
broker: | |
image: confluentinc/cp-kafka:7.0.1 | |
container_name: broker | |
ports: | |
# To learn about configuring Kafka for access across networks see | |
# https://www.confluent.io/blog/kafka-client-cannot-connect-to-broker-on-aws-on-docker-etc/ | |
- "9092:9092" | |
depends_on: | |
- zookeeper | |
environment: | |
KAFKA_BROKER_ID: 1 | |
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181' | |
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_INTERNAL:PLAINTEXT | |
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092,PLAINTEXT_INTERNAL://broker:29092 | |
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1 | |
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment