mirror of
https://github.com/dursunkoc/debezium-samples.git
synced 2022-02-09 10:36:56 +03:00
37 lines
834 B
YAML
37 lines
834 B
YAML
version: '2'
|
|
services:
|
|
zookeeper:
|
|
image: debezium/zookeeper:${DEBEZIUM_VERSION}
|
|
ports:
|
|
- 2181:2181
|
|
- 2888:2888
|
|
- 3888:3888
|
|
kafka:
|
|
image: debezium/kafka:${DEBEZIUM_VERSION}
|
|
ports:
|
|
- 9092:9092
|
|
links:
|
|
- zookeeper
|
|
environment:
|
|
- ZOOKEEPER_CONNECT=zookeeper:2181
|
|
postgres:
|
|
image: debezium/example-postgres:${DEBEZIUM_VERSION}
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
connect:
|
|
image: debezium/connect:${DEBEZIUM_VERSION}
|
|
ports:
|
|
- 8083:8083
|
|
links:
|
|
- kafka
|
|
- postgres
|
|
environment:
|
|
- BOOTSTRAP_SERVERS=kafka:9092
|
|
- GROUP_ID=1
|
|
- CONFIG_STORAGE_TOPIC=my_connect_configs
|
|
- OFFSET_STORAGE_TOPIC=my_connect_offsets
|
|
- STATUS_STORAGE_TOPIC=my_connect_statuses
|