-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathdocker-compose.yml
63 lines (45 loc) · 1.13 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
version: '3.4'
services:
catalogdb:
image: postgres
basketdb:
image: postgres
distributedcache:
image: redis
orderdb:
image: mcr.microsoft.com/mssql/server
messagebroker:
image: rabbitmq:management
catalog.api:
image: ${DOCKER_REGISTRY-}catalogapi
build:
context: .
dockerfile: Services/Catalog/Catalog.API/Dockerfile
basket.api:
image: ${DOCKER_REGISTRY-}basketapi
build:
context: .
dockerfile: Services/Basket/Basket.API/Dockerfile
discount.grpc:
image: ${DOCKER_REGISTRY-}discountgrpc
build:
context: .
dockerfile: Services/Discount/Discount.Grpc/Dockerfile
ordering.api:
image: ${DOCKER_REGISTRY-}orderingapi
build:
context: .
dockerfile: Services/Ordering/Ordering.API/Dockerfile
yarpapigateway:
image: ${DOCKER_REGISTRY-}yarpapigateway
build:
context: .
dockerfile: ApiGateways/YarpApiGateway/Dockerfile
shopping.web:
image: ${DOCKER_REGISTRY-}shoppingweb
build:
context: .
dockerfile: WebApps/Shopping.Web/Dockerfile
volumes:
postgres_catalog:
postgres_basket: