-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
79 lines (62 loc) · 1.73 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
version: '3.4'
services:
seq:
image: datalust/seq:latest
sql-db:
image: mcr.microsoft.com/mssql/server:2022-latest
catalog-db:
image: mongo
cart-db:
image: redis:alpine
rabbitmq:
image: rabbitmq:3-management-alpine
microshop-view:
image: ${DOCKER_REGISTRY-}microshopview
build:
context: .
dockerfile: Src/View/MicroShop.View/Dockerfile
microshop-admin:
image: ${DOCKER_REGISTRY-}microshopadmin
build:
context: .
dockerfile: Src/View/MicroShop.Admin/Dockerfile
orders-api:
image: ${DOCKER_REGISTRY-}ordersapi
build:
context: .
dockerfile: Src/Services/Orders/Orders.Api/Dockerfile
orders-signalr:
image: ${DOCKER_REGISTRY-}orderssignalr
build:
context: .
dockerfile: Src/Services/Orders/Orders.SignalR/Dockerfile
identity-api:
image: ${DOCKER_REGISTRY-}identityapi
build:
context: .
dockerfile: Src/Services/Identity/Identity.Api/Dockerfile
cart-api:
image: ${DOCKER_REGISTRY-}cartapi
build:
context: .
dockerfile: Src/Services/Cart/Cart.Api/Dockerfile
catalog-api:
image: ${DOCKER_REGISTRY-}catalogapi
build:
context: .
dockerfile: Src/Services/Catalog/Catalog.Api/Dockerfile
payments-api:
image: ${DOCKER_REGISTRY-}paymentsapi
build:
context: .
dockerfile: Src/Services/Payments/Payments.Api/Dockerfile
apigateway:
image: ${DOCKER_REGISTRY-}apigateway
build:
context: .
dockerfile: Src/ApiGateways/ApiGateway/Dockerfile
microshop-healthchecksui:
image: ${DOCKER_REGISTRY-}microshophealthchecksui
build:
context: .
dockerfile: Src/View/MicroShop.HealthChecksUI/Dockerfile