-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
65 lines (58 loc) · 971 Bytes
/
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
version: '3.4'
services:
webapp:
build:
context: ./webapp
target: dev
ports:
- "3000:80"
volumes:
- ./webapp:/opt
event-bus:
build:
context: ./event-bus
target: dev
ports:
- "8080:8080"
volumes:
- ./event-bus:/opt
networks:
- eventBus
comment-moderation:
build:
context: ./comment-moderation
target: dev
ports:
- "8002:8002"
volumes:
- ./comment-moderation:/opt
comments:
build:
context: ./comments
target: dev
ports:
- "8001:8001"
volumes:
- ./comments:/opt
posts:
build:
context: ./posts
target: dev
ports:
- "8000:8000"
volumes:
- ./posts:/opt
query:
depends_on:
- "event-bus"
build:
context: ./query
target: dev
ports:
- "8010:8010"
volumes:
- ./query:/opt
networks:
- eventBus
networks:
eventBus: