-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
57 lines (46 loc) · 1.11 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
version: '3.4'
services:
exchangesaccess.api:
image: ${DOCKER_REGISTRY}exchangesaccessapi
build:
context: .
dockerfile: src/Services/ExchangesAccess/ExchangesAccess.API/Dockerfile
depends_on:
- rabbitmq
calculation.api:
image: ${DOCKER_REGISTRY}calculationapi
build:
context: .
dockerfile: src/Services/Calculation/Calculation.API/Dockerfile
depends_on:
- rabbitmq
execution.api:
image: ${DOCKER_REGISTRY}executionapi
build:
context: .
dockerfile: src/Services/Execution/Execution.API/Dockerfile
depends_on:
- rabbitmq
- sql.data
rabbitmq:
image: rabbitmq:3.7.2-management
ports:
- "8080:15672"
- "5671:5671"
- "15671:15671"
- "5672:5672"
- "4369:4369"
sql.data:
image: microsoft/mssql-server-linux:2017-latest
testapi:
image: ${DOCKER_REGISTRY}testapi
build:
context: .
dockerfile: TestAPI/Dockerfile
depends_on:
- sql.data
webmvc:
image: ${DOCKER_REGISTRY}webmvc
build:
context: .
dockerfile: src/Web Apps/WebMVC/Dockerfile