-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
73 lines (73 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
73 lines (73 loc) · 1.11 KB
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
67
68
69
70
71
72
73
core:
build: ../core
ports:
- "8006:8080"
links:
- postgres:db
- zookeeper:zk
- kafka
warehouse:
build: ../warehouse
ports:
- "8003:8080"
links:
- postgres:db
- zookeeper:zk
- kafka
operations:
build: ../operations
ports:
- "8005:8080"
links:
- postgres:db
- zookeeper:zk
- kafka
- core
- warehouse
notification:
build: ../notification
ports:
- "8002:8080"
links:
- zookeeper:zk
- kafka
auth:
build: ../auth
ports:
- "8001:8080"
links:
- redis
- zookeeper:zk
- kafka
subscription:
build: ../subscription
ports:
- "8004:8080"
links:
- postgres:db
- kafka
- zookeeper:zk
redis:
image: redis
postgres_setup:
build: ./postgres
links:
- postgres:db
postgres:
image: postgres
zookeeper:
image: wurstmeister/zookeeper
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka:0.8.2.0
hostname: kafka
ports:
- "9092:9092"
links:
- zookeeper:zk
environment:
KAFKA_ADVERTISED_HOST_NAME: "kafka"
KAFKA_ADVERTISED_PORT: 9092
volumes:
- /var/run/docker.sock:/var/run/docker.sock