-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
77 lines (61 loc) · 1.48 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
74
75
76
77
version: '3.8'
services:
catalogdb:
image: mongo
basketdb:
image: redis:alpine
discountdb:
image: postgres
orderdb:
image: mcr.microsoft.com/azure-sql-edge:latest
pgadmin:
image: dpage/pgadmin4
portainer:
image: portainer/portainer-ce
catalog.api:
image: ${DOCKER_REGISTRY-}catalogapi
build:
context: .
dockerfile: src/Catalog.API/Dockerfile
basket.api:
image: ${DOCKER_REGISTRY-}basketapi
build:
context: .
dockerfile: src/Basket.API/Dockerfile
discount.api:
image: ${DOCKER_REGISTRY-}discountapi
build:
context: .
dockerfile: src/Discount.API/Dockerfile
discount.grpc:
image: ${DOCKER_REGISTRY-}discountgrpc
build:
context: .
dockerfile: src/Discount.GRPC/Dockerfile
ordering.api:
image: ${DOCKER_REGISTRY-}orderingapi
build:
context: .
dockerfile: src/Ordering.API/Dockerfile
rabbitmq:
image: rabbitmq:3-management-alpine
ocelotapi.gateway:
image: ${DOCKER_REGISTRY-}ocelotapi.gateway
build:
context: .
dockerfile: src/OcelotApi.Gateway/Dockerfile
shopping.aggregator:
image: ${DOCKER_REGISTRY-}shopping.aggregator
build:
context: .
dockerfile: src/Shopping.Aggregator/Dockerfile
shopping.webapp:
image: ${DOCKER_REGISTRY-}shopping.webapp
build:
context: .
dockerfile: src/Shopping.WebApp/Dockerfile
volumes:
mongo_data:
portainer_data:
postgres_data:
pgadmin_data: