-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
139 lines (130 loc) · 2.82 KB
/
docker-compose.yaml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
version: "3.0"
services:
gateway:
build:
dockerfile: ./src/ApiGatways/OcelotApiGatway/Dockerfile
context: .
container_name: "ocelot-api-gateway"
restart: always
ports:
- "80:80"
shopping_aggregator:
build:
dockerfile: ./src/ApiGatways/Shopping.Aggregator/Dockerfile
context: .
container_name: "shopping-aggregator"
restart: always
ports:
- "9069:80"
rabbitmq_broker:
image: rabbitmq:3-management-alpine
container_name: "rabbitmq-broker"
restart: always
ports:
- "15672:15672"
- "5672:5672"
catalogdb:
image: mongo
restart: always
container_name: "catalog-mongo"
expose:
- 27017
catalog:
build:
dockerfile: ./src/Catalog/Microservices.Catalog.Api/Dockerfile
context: .
container_name: "catalog-app"
depends_on:
- catalogdb
expose:
- 80
ports:
- "8080:80"
basketdb:
image: redis
restart: always
container_name: "basket-redis"
expose:
- 6379
basket:
build:
dockerfile: ./src/Basket/Microservices.Basket.Api/Dockerfile
context: .
container_name: "basket-app"
depends_on:
- basketdb
- rabbitmq_broker
expose:
- 80
ports:
- "9090:80"
discountdb:
image: postgres
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: superpassword
discount:
build:
dockerfile: ./src/Discount/Microservices.Discount.Api/Dockerfile
context: .
container_name: "discount-app"
depends_on:
- discountdb
expose:
- 80
ports:
- "9091:80"
discount-grpc:
build:
dockerfile: ./src/Discount/Microservices.Discount.Grpc/Dockerfile
context: .
container_name: "discount-app-grpc"
depends_on:
- discountdb
expose:
- 80
ports:
- "9093:80"
orderdb:
image: mcr.microsoft.com/mssql/server
restart: always
container_name: "order-database"
environment:
ACCEPT_EULA: Y
SA_PASSWORD: adminA#15
expose:
- 1433
ports:
- "1433:1433"
orderapp:
build:
dockerfile: ./src/Ordering/Microservices.Ordering.Api/Dockerfile
context: .
container_name: "order-app"
restart: always
depends_on:
- orderdb
expose:
- 80
ports:
- "9095:80"
order_consumers:
build:
dockerfile: ./src/Ordering/Microservices.Ordering.Consumer/Dockerfile
context: .
container_name: "order-consumers"
restart: always
depends_on:
- orderdb
- rabbitmq_broker
shopping_webapp:
build:
dockerfile: ./src/WebApps/Dockerfile
context: .
container_name: "shopping-web-app"
restart: always
ports:
- "5085:80"
volumes:
postgres_data: