-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
95 lines (72 loc) · 2.05 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: '3.4'
services:
consul:
image: "consul:1.15.4"
rabbitmq:
image: "rabbitmq:3-management"
s_log_db:
image: "postgres:latest"
web.gateway:
image: ${DOCKER_REGISTRY-}webgateway
build:
context: .
dockerfile: src/ApiGateways/Web/Web.Gateway/Dockerfile
web.app:
image: emreaknci/eshopping-webapp:latest
build:
context: .
dockerfile: src/Clients/Web/Dockerfile
catalogservice.api:
image: ${DOCKER_REGISTRY-}catalogserviceapi
build:
context: .
dockerfile: src/Services/CatalogService/CatalogService.API/Dockerfile
catalogservice.db:
image: postgres:latest
identityservice.api:
image: ${DOCKER_REGISTRY-}identityserviceapi
build:
context: .
dockerfile: src/Services/IdentityService/IdentityService.API/Dockerfile
identityservice.db:
image: postgres:latest
commentservice.api:
image: ${DOCKER_REGISTRY-}commentserviceapi
build:
context: .
dockerfile: src/Services/CommentService/CommentService/Dockerfile
commentservice.db:
image: mongo
basketservice.api:
image: ${DOCKER_REGISTRY-}basketserviceapi
build:
context: .
dockerfile: src/Services/BasketService/BasketService.API/Dockerfile
basketservice.db:
image: "redis:latest"
notificationservice.api:
image: ${DOCKER_REGISTRY-}notificationserviceapi
build:
context: .
dockerfile: src/Services/NotificationService/NotificationService.API/Dockerfile
orderservice.api:
image: ${DOCKER_REGISTRY-}orderserviceapi
build:
context: .
dockerfile: src/Services/OrderService/OrderService.API/Dockerfile
orderservice.db:
image: postgres:latest
paymentservice.api:
image: ${DOCKER_REGISTRY-}paymentserviceapi
build:
context: .
dockerfile: src/Services/PaymentService/PaymentService.API/Dockerfile
volumes:
catalogdb_volume:
rabbitmq_volume:
identitydb_volume:
commentdb_volume:
basketdb_volume:
orderdb_volume:
logdb_volume:
catalogservicephotos_volume: