This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
72 lines (72 loc) · 2.43 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
version: '3.7'
services:
materialized:
image: materialize/materialized:v0.15.0
command: -w2 --disable-telemetry
ports:
- 6875:6875
mysql:
image: debezium/example-mysql:1.4
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=debezium
- MYSQL_USER=mysqluser
- MYSQL_PASSWORD=mysqlpw
healthcheck: { test: mysql -pdebezium -e 'select 1', interval: 1s, start_period: 30s }
zookeeper:
image: confluentinc/cp-zookeeper:5.5.3
environment:
ZOOKEEPER_CLIENT_PORT: 2181
healthcheck: { test: nc -z localhost 2181, interval: 1s, start_period: 120s }
kafka:
image: confluentinc/cp-enterprise-kafka:5.5.3
depends_on: [zookeeper]
environment:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
ports:
- 9092:9092
depends_on:
zookeeper: { condition: service_healthy }
healthcheck: { test: nc -z localhost 9092, interval: 1s, start_period: 120s }
schema-registry:
image: confluentinc/cp-schema-registry:5.5.3
environment:
- SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL=zookeeper:2181
- SCHEMA_REGISTRY_HOST_NAME=schema-registry
- SCHEMA_REGISTRY_LISTENERS=http://schema-registry:8081,http://localhost:8081
depends_on:
zookeeper: { condition: service_healthy }
kafka: { condition: service_healthy }
healthcheck: { test: curl -f localhost:8081, interval: 1s, start_period: 120s }
debezium:
image: debezium/connect:1.4
environment:
BOOTSTRAP_SERVERS: kafka:9092
GROUP_ID: 1
CONFIG_STORAGE_TOPIC: connect_configs
OFFSET_STORAGE_TOPIC: connect_offsets
KEY_CONVERTER: io.confluent.connect.avro.AvroConverter
VALUE_CONVERTER: io.confluent.connect.avro.AvroConverter
CONNECT_KEY_CONVERTER_SCHEMA_REGISTRY_URL: http://schema-registry:8081
CONNECT_VALUE_CONVERTER_SCHEMA_REGISTRY_URL: http://schema-registry:8081
ports:
- 8083:8083
healthcheck: { test: curl -f `hostname`:8083, interval: 1s, start_period: 120s }
depends_on:
kafka: { condition: service_healthy }
metabase:
image: metabase/metabase
depends_on: [materialized]
ports:
- 3030:3000
loadgen:
build: loadgen
depends_on:
mysql: { condition: service_healthy }
debezium: { condition: service_healthy }
kafka: { condition: service_healthy }
mzcli:
image: materialize/cli