-
Notifications
You must be signed in to change notification settings - Fork 165
/
docker-compose.yml
75 lines (57 loc) · 1.47 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: '3.4'
services:
catalogdb:
image: mongo
basketdb:
image: redis:alpine
discountdb:
image: postgres
orderdb:
image: mcr.microsoft.com/mssql/server
mongoclient:
image: mongoclient/mongoclient
pgadmin:
image: dpage/pgadmin4
portainer:
image: portainer/portainer-ce
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
ocelotapigateway:
image: ${DOCKER_REGISTRY-}ocelotapigateway
build:
context: .
dockerfile: ApiGateways/OcelotApiGateway/Dockerfile
onlineshop.aggregator:
image: ${DOCKER_REGISTRY-}onlineshopaggregator
build:
context: .
dockerfile: ApiGateways/OnlineShop.Aggregator/OnlineShop.Aggregator/Dockerfile
volumes:
portainer_data:
postgres_data:
pgadmin_data: