-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (54 loc) · 1.16 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
version: "3.8"
services:
catalogdb:
image: mongo
basketdb:
image: redis
discountdb:
image: postgres
identitydb:
image: mcr.microsoft.com/mssql/server
orderdb:
image: mcr.microsoft.com/mssql/server
rabbitmq:
image: rabbitmq:3.9.5-management
catalog.api:
image: catalog_api_image
build:
context: .
dockerfile: Catalog/Dockerfile
identityserver.api:
image: identityserver_api_image
build:
context: .
dockerfile: IdentityServer/AuthServerIds4/Dockerfile
basket.api:
image: basket_api_image
build:
context: .
dockerfile: Basket/Dockerfile
discount.api:
image: discount_api_image
build:
context: .
dockerfile: DiscountAPI/Dockerfile
fakepayment.api:
image: fakepayment_api_image
build:
context: .
dockerfile: FakePayment/Dockerfile
order.api:
image: order_api_image
build:
context: .
dockerfile: Order/Order.API/Dockerfile
gateway.api:
image: gateway_api_image
build:
context: .
dockerfile: Gateway/Dockerfile
volumes:
catalogdb_volume:
discount_volume:
identitydb_volume:
orderdb_volume: