-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (49 loc) · 1.2 KB
/
docker-compose.yml
File metadata and controls
56 lines (49 loc) · 1.2 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
version: '3.4'
services:
## Database ##
sql.data:
image: microsoft/mssql-server-linux:2017-latest
## Service Bus ##
rabbitmq:
image: rabbitmq:3-management-alpine
## Internal API Services ##
#arbitrage.api:
# image: ${DOCKER_REGISTRY-}arbitrageapi
# build:
# context: .
# dockerfile: Services/Arbitrage/Arbitrage.API/Dockerfile
# depends_on:
# - rabbitmq
# - trading.api
sentiment.api:
image: ${DOCKER_REGISTRY-}sentimentapi
build:
context: .
dockerfile: Services/Sentiment/Sentiment.API/Dockerfile
depends_on:
- rabbitmq
portfolio.api:
image: ${DOCKER_REGISTRY-}portfolioapi
build:
context: .
dockerfile: Services/Portfolio/Portfolio.API/Dockerfile
depends_on:
- rabbitmq
trading.api:
image: ${DOCKER_REGISTRY-}tradingapi
build:
context: .
dockerfile: Services/Trading/Trading.API/Dockerfile
depends_on:
- rabbitmq
- sql.data
## Public API Services ##
trading-apigw:
image: ${DOCKER_REGISTRY-}apigwbase
build:
context: .
dockerfile: ApiGateways/ApiGw-Base/Dockerfile
depends_on:
# - arbitrage.api
- sentiment.api
- rabbitmq