Add sample for the canonical WordCount Showing how to track group of products Showing how to implement interactive queries Fix #41 Update scst versions Enhance kstream samples
15 lines
341 B
YAML
15 lines
341 B
YAML
version: '2'
|
|
services:
|
|
zookeeper:
|
|
image: wurstmeister/zookeeper
|
|
ports:
|
|
- "2181:2181"
|
|
kafka:
|
|
image: wurstmeister/kafka
|
|
ports:
|
|
- "9092:9092"
|
|
environment:
|
|
KAFKA_ADVERTISED_HOST_NAME: 192.168.99.100
|
|
KAFKA_ADVERTISED_PORT: 9092
|
|
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
|