-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
72 lines (66 loc) · 1.69 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
version: "3.8"
services:
catalogdb:
image: mongo
basketdb:
image: redis
discountdb:
image: postgres
identitydb:
image: mcr.microsoft.com/mssql/server
user: root
orderdb:
image: mcr.microsoft.com/mssql/server
user: root
rabbitmq:
image: rabbitmq:3.8.14-management
catalog.api:
image: catalog_api_image
build:
context: .
dockerfile: Services/Catalog/FreeCourse.Services.Catalog/Dockerfile
basket.api:
image: basket_api_image
build:
context: .
dockerfile: Services/Basket/FreeCourse.Services.Basket/Dockerfile
photostock.api:
image: photostock_api_image
build:
context: .
dockerfile: Services/PhotoStock/FreeCourse.Services.PhotoStock/Dockerfile
discount.api:
image: discount_api_image
build:
context: .
dockerfile: Services/Discount/FreeCourse.Services.Discount/Dockerfile
fakepayment.api:
image: fakepayment_api_image
build:
context: .
dockerfile: Services/FakePayment/FreeCourse.Services.FakePayment/Dockerfile
order.api:
image: order_api_image
build:
context: .
dockerfile: Services/Order/FreeCourse.Services.Order.API/Dockerfile
gateway.api:
image: gateway_api_image
build:
context: .
dockerfile: Gateways/FreeCourse.Gateway/Dockerfile
aspnetcoremvc.web:
image: aspnetcoremvc.web_image
build:
context: .
dockerfile: Frontends/FreeCourse.Web/Dockerfile
identityserver.api:
image: identityserver_api_image
build:
context: .
dockerfile: IdentityServer/FreeCourse.IdentityServer/Dockerfile
volumes:
catalogdb_volume:
discountdb_volume:
identitydb_volume:
orderdb_volume: