-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (59 loc) · 1.56 KB
/
docker-compose.yml
File metadata and controls
59 lines (59 loc) · 1.56 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
version: '3.8'
services:
catalogdb:
image: mongo
basketdb:
image: redis
discountdb:
image: postgres
identitydb:
image: mcr.microsoft.com/mssql/server:2019-latest
orderdb:
image: mcr.microsoft.com/mssql/server:2019-latest
rabbitmq:
image: rabbitmq:3.8.14-management
identity.api:
image: identity_api_image
build:
context: .
dockerfile: IdentityServer/MicroServicesNet5.IdentityServer/Dockerfile
catalog.api:
image: catalog_api_image
build:
context: .
dockerfile: Services/Catalog/MicroServicesNet5.Services.Catalog/Dockerfile
basket.api:
image: basket_api_image
build:
context: .
dockerfile: Services/Basket/MicroServicesNet5.Services.Basket/Dockerfile
photostock.api:
image: photostock_api_image
build:
context: .
dockerfile: Services/PhotoStock/MicroServicesNet5.Services.PhotoStock/Dockerfile
discount.api:
image: discount_api_image
build:
context: .
dockerfile: Services/Discount/MicroServicesNet5.Services.Discount/Dockerfile
payment.api:
image: payment_api_image
build:
context: .
dockerfile: Services/Payment/MicroServicesNet5.Services.Payment/Dockerfile
order.api:
image: order_api_image
build:
context: .
dockerfile: Services/Order/MicroServicesNet5.Services.Order.API/Dockerfile
gateway.api:
image: gateway_api_image
build:
context: .
dockerfile: Gateways/MicroServicesNet5.Gateway/Dockerfile
volumes:
catalogdb_volume:
discountdb_volume:
identitydb_volume:
orderdb_volume: