Skip to content
Snippets Groups Projects

Add Implementations of Use Cases

Merged Sören Henning requested to merge uc_implementation into master
82 files
+ 1255
1778
Compare changes
  • Side-by-side
  • Inline
Files
82
 
version: '2'
 
services:
 
zookeeper:
 
image: wurstmeister/zookeeper
 
ports:
 
- "2181:2181"
 
kafka:
 
image: wurstmeister/kafka
 
ports:
 
- "9092:9092"
 
expose:
 
- "9092"
 
environment:
 
KAFKA_ADVERTISED_HOST_NAME: kafka #172.17.0.1 # Replace with docker network
 
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
 
KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000
 
KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1,dayofweek:3:1,hourofday:3:1,hourofweek:3:1"
 
uc-app:
 
image: benediktwetzel/uc1-app:latest
 
environment:
 
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
 
uc-wg:
 
image: benediktwetzel/uc1-wg:latest
 
environment:
 
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
 
NUM_SENSORS: 1
Loading