-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
66 lines (59 loc) · 1.49 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
version: '3.2'
services:
zookeeper:
image: wurstmeister/zookeeper:3.4.6
expose:
- "2181"
container_name: zookeeper
kafka:
image: wurstmeister/kafka:2.12-2.3.0
depends_on:
- zookeeper
ports:
- "9092:9092"
expose:
- "9093"
environment:
KAFKA_CREATE_TOPICS: "toBucket:1:1,toCore:1:1,toHeartbeat:1:1,toStream:1:1"
KAFKA_ADVERTISED_LISTENERS: INSIDE://kafka:9093,OUTSIDE://kafka:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT
KAFKA_LISTENERS: INSIDE://0.0.0.0:9092,OUTSIDE://0.0.0.0:9093
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_INTER_BROKER_LISTENER_NAME: INSIDE
volumes:
- /var/run/docker.sock:/var/run/docker.sock
container_name: kafka
# app part
frontendservice:
build:
context: ../../src/frontend
dockerfile: Dockerfile
ports:
- "80:80"
depends_on:
- converterserver
container_name: frontend
converterserver:
build:
context: ../../src/converterserverservice
dockerfile: Dockerfile
ports:
- "3001:3001"
depends_on:
- kafka
- zookeeper
container_name: converterserver
volumes:
- "shared-tmp-volume:/data/tmp"
bucketuploader:
build:
context: ../../src/bucketuploaderservice
dockerfile: Dockerfile
depends_on:
- kafka
- zookeeper
- converterserver
volumes:
- "shared-tmp-volume:/data/tmp"
volumes:
shared-tmp-volume: