-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
82 lines (62 loc) · 1.93 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
version: '3.4'
services:
webapp:
container_name: c_blazorui
image: ${DOCKER_REGISTRY-}webapp
build:
context: .
dockerfile: src/Clients/BlazorWebApp/WebApp/Dockerfile
web.apigateway:
container_name: c_apigateway
image: ${DOCKER_REGISTRY-}webapigateway
build:
context: .
dockerfile: src/ApiGateways/WebApiGateway/Web.ApiGateway/Dockerfile
orderservice.api:
container_name: c_orderservice
image: ${DOCKER_REGISTRY-}orderserviceapi
build:
context: .
dockerfile: src/Services/OrderService/OrderService.Api/Dockerfile
notificationservice:
container_name: c_notificationservice
image: ${DOCKER_REGISTRY-}notificationservice
build:
context: .
dockerfile: src/Services/NotificationService/NotificationService/Dockerfile
identityservice.api:
container_name: c_identityservice
image: ${DOCKER_REGISTRY-}identityserviceapi
build:
context: .
dockerfile: src/Services/IdentityService/IdentityService.Api/Dockerfile
catalogservice.api:
container_name: c_catalogservice
image: ${DOCKER_REGISTRY-}catalogserviceapi
build:
context: .
dockerfile: src/Services/CatalogService/CatalogService.Api/Dockerfile
basketservice.api:
container_name: c_basketservice
image: ${DOCKER_REGISTRY-}basketserviceapi
build:
context: .
dockerfile: src\Services\BasketService\BasketService.Api\Dockerfile
paymentservice.api:
container_name: c_paymentservice
image: ${DOCKER_REGISTRY-}paymentserviceapi
build:
context: .
dockerfile: src/Services/PaymentService/PaymentService.Api/Dockerfile
s_redis:
container_name: c_redis
image: redis
s_rabbitmq:
container_name: c_rabbitmq
image: rabbitmq:3-management
s_sqlserver:
container_name: c_sqlserver
image: mcr.microsoft.com/mssql/server:2019-latest
s_consul:
container_name: c_consul
image: consul