Refactoring dynamic source destination samples

This commit is contained in:
Soby Chacko
2019-10-31 16:30:02 -04:00
parent a7875c7f74
commit bb0e21f677
20 changed files with 703 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
version: '2'
services:
kafka:
image: wurstmeister/kafka
container_name: kafka-dynamic-source
ports:
- "9092:9092"
environment:
- KAFKA_ADVERTISED_HOST_NAME=127.0.0.1
- KAFKA_ADVERTISED_PORT=9092
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
depends_on:
- zookeeper
zookeeper:
image: wurstmeister/zookeeper
ports:
- "2181:2181"
environment:
- KAFKA_ADVERTISED_HOST_NAME=zookeeper