forked from kubealex/event-driven-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kafka-compose.yml
41 lines (38 loc) · 872 Bytes
/
kafka-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: "3.8"
services:
zookeeper:
image: docker.io/bitnami/zookeeper:latest
hostname: zookeeper
networks:
- eda-ansible
ports:
- "2181:2181"
volumes:
- "zookeeper_data:/bitnami"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: docker.io/bitnami/kafka:latest
hostname: kafka
ports:
- "9092:9092"
networks:
- eda-ansible
volumes:
- "kafka_data:/bitnami"
environment:
KAFKA_CFG_ZOOKEEPER_CONNECT: "zookeeper:2181"
KAFKA_CFG_LISTENERS: "PLAINTEXT://:9092"
ALLOW_PLAINTEXT_LISTENER: true
KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://<ADVERTISED_HOST/IP>:<PORT>"
KAFKA_ENABLE_KRAFT: false
depends_on:
- zookeeper
networks:
eda-ansible:
name: eda-ansible
volumes:
zookeeper_data:
driver: local
kafka_data:
driver: local