-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
105 lines (79 loc) · 2.57 KB
/
docker-compose.yml
File metadata and controls
105 lines (79 loc) · 2.57 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
services:
web.apigateway:
container_name: "c_apigateway"
image: ${DOCKER_REGISTRY-}webapigateway
build:
context: .
dockerfile: src/ApiGateways/WebApiGateway/Web.ApiGateway/Dockerfile
identity.api:
container_name: "c_identityservice"
image: ${DOCKER_REGISTRY-}identityapi
build:
context: .
dockerfile: src/Services/IdentityService/Identity.Api/Dockerfile
courierservice.api:
container_name: "c_courierservice"
image: ${DOCKER_REGISTRY-}courierserviceapi
build:
context: .
dockerfile: src/Services/CourierService/CourierService.Api/Dockerfile
basketservice.api:
container_name: "c_basketservice"
image: ${DOCKER_REGISTRY-}basketserviceapi
build:
context: .
dockerfile: src/Services/BasketService/BasketService.Api/Dockerfile
menu.api:
container_name: "c_menuservice"
image: ${DOCKER_REGISTRY-}menuapi
build:
context: .
dockerfile: src/Services/MenuService/Menu.Api/Dockerfile
notificationservice.console:
container_name: "c_notificationservice"
image: ${DOCKER_REGISTRY-}notificationserviceconsole
build:
context: .
dockerfile: src/Services/NotificationService/NotificationService.Console/Dockerfile
orderservice.api:
container_name: "c_orderservice"
image: ${DOCKER_REGISTRY-}orderserviceapi
build:
context: .
dockerfile: src/Services/OrderService/OrderService.Api/Dockerfile
paymentservice.api:
container_name: "c_paymentservice"
image: ${DOCKER_REGISTRY-}paymentserviceapi
build:
context: .
dockerfile: src/Services/PaymentService/PaymentService.Api/Dockerfile
restaurantorderservice.api:
container_name: "c_restaurantorderservice"
image: ${DOCKER_REGISTRY-}restaurantorderserviceapi
build:
context: .
dockerfile: src/Services/RestaurantOrderService/RestaurantOrderService.Api/Dockerfile
restaurant.api:
container_name: "c_restaurantservice"
image: ${DOCKER_REGISTRY-}restaurantapi
build:
context: .
dockerfile: src/Services/RestaurantService/Restaurant.Api/Dockerfile
redis-server:
container_name: c_redis
image: redis
rabbitmq-server:
container_name: c_rabbitmq
image: rabbitmq:3-management
consul-server:
container_name: c_consul
image: hashicorp/consul
postgresql-server:
container_name: c_postgresql
image: postgres:latest
mongodb-server:
container_name: c_mongodb
image: mongo:latest
mssql-server:
container_name: c_sqlserver
image: mcr.microsoft.com/mssql/server:2022-latest