-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
64 lines (52 loc) · 1.58 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
version: '3.4'
services:
api.gateway:
image: ${DOCKER_REGISTRY-}apigateway
build:
context: .
dockerfile: src/API.Gateway/Dockerfile
commerce.service:
image: ${DOCKER_REGISTRY-}commerceserviceapi
build:
context: .
dockerfile: src/CommerceService/Presentation/Dockerfile
email.service:
image: ${DOCKER_REGISTRY-}emailservice
build:
context: .
dockerfile: src/EmailService/Dockerfile
identity.service:
image: ${DOCKER_REGISTRY-}identityservice
build:
context: .
dockerfile: src/IdentityService/Dockerfile
invoice.service:
image: ${DOCKER_REGISTRY-}invoiceservice
build:
context: .
dockerfile: src/InvoiceService/Dockerfile
payment.service:
image: ${DOCKER_REGISTRY-}paymentservice
build:
context: .
dockerfile: src/PaymentService/Dockerfile
stock.service:
image: ${DOCKER_REGISTRY-}stockservice
build:
context: .
dockerfile: src/StockService/StockWorkerService/Dockerfile
s_sqlserver:
container_name: c_sqlserver
image: mcr.microsoft.com/mssql/server:2019-latest
s_rabbitmq:
container_name: c_rabbitmq
image: rabbitmq:3-management
s_mongo:
container_name: c_mongo
image: mongo
s_redis:
container_name: c_redis
image: redis:alpine
s_consul:
container_name: c_consul
image: consul:1.15.4