-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
80 lines (64 loc) · 2.07 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
73
74
75
76
77
78
79
80
version: '3.4'
services:
orderdb:
image: mongo
mongoclient:
image: mongoclient/mongoclient
redisdb:
image: redis
sqldata:
image: mcr.microsoft.com/mssql/server:2019-latest
rabbitmq:
image: rabbitmq:3-management-alpine
portainer:
image: portainer/portainer-ce
orderservice:
image: ${DOCKER_REGISTRY-microservices}/orderservice
build:
context: .
dockerfile: src/Services/Orders/OrderService/Dockerfile
basketservice:
image: ${DOCKER_REGISTRY-microservices}/basketservice
build:
context: .
dockerfile: src/Services/Baskets/BasketService/Dockerfile
discountservice:
image: ${DOCKER_REGISTRY-microservices}/discountservice
build:
context: .
dockerfile: src/Services/Discounts/DiscountService/Dockerfile
productservice:
image: ${DOCKER_REGISTRY-microservices}/productservice
build:
context: .
dockerfile: src/Services/Products/ProductService/Dockerfile
paymentservice.endpoint:
image: ${DOCKER_REGISTRY-microservices}/paymentserviceendpoint
build:
context: .
dockerfile: src/Services/Payments/Presentation/PaymentService.EndPoint/Dockerfile
identityservice:
image: ${DOCKER_REGISTRY-microservices}/identityservice
build:
context: .
dockerfile: src/Identity/IdentityService/Dockerfile
apigateway.admin:
image: ${DOCKER_REGISTRY-microservices}/apigatewayadmin
build:
context: .
dockerfile: src/ApiGateways/ApiGateway.Admin/Dockerfile
apigateway.forweb:
image: ${DOCKER_REGISTRY-microservices}/apigatewayforweb
build:
context: .
dockerfile: src/ApiGateways/ApiGatewayForWeb/Dockerfile
microservices.admin.frontend:
image: ${DOCKER_REGISTRY-microservices}/microservicesadminfrontend
build:
context: .
dockerfile: src/Web/Microservices.Admin.Frontend/Dockerfile
microservices.web.frontend:
image: ${DOCKER_REGISTRY-microservices}/microserviceswebfrontend
build:
context: .
dockerfile: src/Web/Microservices.Web.Frontend/Microservices.Web.Frontend/Dockerfile