-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
72 lines (63 loc) · 1.06 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
67
68
69
70
71
72
version: '2.1'
services:
postgres:
build:
context: ./transaction-server/db
transaction-server:
build:
context: ./transaction-server
ports:
- "44416:44416"
links:
- postgres
depends_on:
- audit-mq
- redis-ts
env_file:
- vars.env
test-quote-server:
build:
context: ./test-quote-server
quote-server:
build:
context: ./quote-server
ports:
- "44418:44418"
links:
- redis
- test-quote-server
depends_on:
- test-quote-server
env_file:
- vars.env
redis:
image: "redis:alpine"
redis-ts:
image: "redis:alpine"
web:
build:
context: ./Web
ports:
- "8080:8080"
env_file:
- vars.env
audit-mq:
image: "rabbitmq:alpine"
ports:
- "5672:5672"
- "15672:15672"
audit-db:
build:
context: ./audit-server/db
audit-server:
build:
context: ./audit-server
depends_on:
- audit-mq
- audit-db
ports:
- "44417:44417"
links:
- audit-db
env_file:
- vars.env