-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
71 lines (71 loc) · 1.89 KB
/
docker-compose.yml
File metadata and controls
71 lines (71 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '3.8'
services:
# gateway.api:
# image: gateway_api_image
# build:
# context: .
# dockerfile: Gateways/Course.Gateway/Dockerfile
# catalog.api:
# image: catalog_api_image
# build:
# context: .
# dockerfile: Services/Catalog/Course.Catalog.Service.Api/Dockerfile
# basket.api:
# image: basket_api_image
# build:
# context: .
# dockerfile: Services/Basket/Course.Basket.Service.Api/Dockerfile
# discount.api:
# image: discount_api_image
# build:
# context: .
# dockerfile: Services/Discount/Course.Discount.Service.Api/Dockerfile
# identity.api:
# image: identity_api_image
# build:
# context: .
# dockerfile: IdentityServer/Course.IdentityServer/Dockerfile
# order.api:
# image: order_api_image
# build:
# context: .
# dockerfile: Services/Order/Course.Order.API/Dockerfile
# payment.api:
# image: payment_api_image
# build:
# context: .
# dockerfile: Services/FakePayment/Course.FakePayment.Service.Api/Dockerfile
# notification.api:
# image: notification_api_image
# build:
# context: .
# dockerfile: Services/Notification/Course.Notification.Service.Api/Dockerfile
# photostock.api:
# image: photostock_api_image
# build:
# context: .
# dockerfile: Services/PhotoStock/Course.PhotoStock.Service.Api/Dockerfile
catalogdb:
image: mongo
basketdb:
image: redis:latest
notificationdb:
image: redis:latest
discountdb:
image: postgres
invoicedb:
image: postgres
identitydb:
image: mcr.microsoft.com/mssql/server:2019-latest
orderdb:
image: mcr.microsoft.com/mssql/server:2019-latest
rabbitmq:
image: rabbitmq:management
volumes:
catalogdb_volume:
basketdb_volume:
notificationdb_volume:
discountdb_volume:
identitydb_volume:
orderdb_volume:
invoicedb_volume: