-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
108 lines (103 loc) · 3.09 KB
/
docker-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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
version: '3.9'
services:
zookeeper-1:
image: confluentinc/cp-zookeeper:latest
container_name: zookeeper-1
hostname: zookeeper-1
ports:
- 12181:2181
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
healthcheck:
interval: 1s
retries: 3
start_period: 60s
test: nc -z zookeeper-1 2181
timeout: 5s
zookeeper-2:
image: confluentinc/cp-zookeeper:latest
container_name: zookeeper-2
hostname: zookeeper-2
ports:
- 22181:2181
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
healthcheck:
interval: 1s
retries: 3
start_period: 60s
test: nc -z zookeeper-2 2181
timeout: 5s
kafka-broker-1:
image: confluentinc/cp-kafka:latest
container_name: kafka-broker-1
hostname: kafka-broker-1
ports:
- 19092:9092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper-1:2181,zookeeper-2:2181
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_INTERNAL:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-broker-1:9092,PLAINTEXT_INTERNAL://localhost:19092
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
depends_on:
zookeeper-1:
condition: service_healthy
zookeeper-2:
condition: service_healthy
healthcheck:
interval: 1s
retries: 3
start_period: 60s
test: nc -z kafka-broker-1 9092
timeout: 5s
kafka-broker-2:
image: confluentinc/cp-kafka:latest
container_name: kafka-broker-2
hostname: kafka-broker-2
ports:
- 29092:9092
environment:
KAFKA_BROKER_ID: 2
KAFKA_ZOOKEEPER_CONNECT: zookeeper-1:2181,zookeeper-2:2181
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_INTERNAL:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-broker-2:9092,PLAINTEXT_INTERNAL://localhost:29092
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
depends_on:
zookeeper-1:
condition: service_healthy
zookeeper-2:
condition: service_healthy
healthcheck:
interval: 1s
retries: 3
start_period: 60s
test: nc -z kafka-broker-2 9092
timeout: 5s
schema-registry:
image: confluentinc/cp-schema-registry:latest
container_name: schema-registry
hostname: schema-registry
ports:
- 8081:8081
environment:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: zookeeper-1:2181,zookeeper-2:2181
SCHEMA_REGISTRY_LISTENERS: http://schema-registry:8081
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: PLAINTEXT://kafka-broker-1:9092,PLAINTEXT_INTERNAL://localhost:19092
SCHEMA_REGISTRY_DEBUG: 'true'
depends_on:
kafka-broker-1:
condition: service_healthy
kafka-broker-2:
condition: service_healthy
healthcheck:
interval: 1s
retries: 3
start_period: 60s
test: nc -z schema-registry 8081
timeout: 5s