-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
62 lines (54 loc) · 992 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
version: '2'
services:
rabbit:
image: rabbitmq:3-management-alpine
ports:
- 5671:5671
- 5672:5672
- 15672:15672
# environment:
# This variable speeds up rabbitMQ runtime, but make it slower to startup
# - RABBITMQ_HIPE_COMPILE= 1
gw:
build: GW
ports:
- 9080:8080
depends_on:
- rabbit
- draw
- customer
- notification
- bet
links:
- rabbit:queue
bet:
build: BetService
depends_on:
- rabbit
links:
- rabbit:queue
customer:
build: Customer
depends_on:
- rabbit
links:
- rabbit:queue
draw:
build: DrawService
depends_on:
- rabbit
links:
- rabbit:queue
notification:
build: NotificationService
depends_on:
- rabbit
- mail-server
links:
- rabbit:queue
- mail-server
mail-server:
image: mailhog/mailhog
ports:
- 1025:1025
- 8025:8025