-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
79 lines (57 loc) · 1.48 KB
/
docker-compose.yml
File metadata and controls
79 lines (57 loc) · 1.48 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
72
73
version: '3.4'
services:
#be carefull about 2spaces before first character !!!!!!!!!!!
catalogdb:
image: mongo
basketdb:
image: redis:alpine
portainer:
image: portainer/portainer-ce
discountdb:
image: postgres
pgadmin:
image: dpage/pgadmin4
orderdb:
image: mcr.microsoft.com/mssql/server:2017-latest
rabbitmq:
image: rabbitmq:3-management-alpine
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.api:
image: ${DOCKER_REGISTRY-}discountapi
build:
context: .
dockerfile: Services/Discount/Discount.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
ocelotapigw:
image: ${DOCKER_REGISTRY-}ocelotapigw
build:
context: .
dockerfile: ApiGateways/OcelotApiGW/Dockerfile
shopping.aggregator:
image: ${DOCKER_REGISTRY-}shoppingaggregator
build:
context: .
dockerfile: ApiGateways/Shopping.Aggregator/Dockerfile
volumes:
mongo_data:
portainer_data:
postgres_data:
pgadmin_data: