forked from asc-lab/dotnetcore-microservices-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yml
72 lines (63 loc) · 1.74 KB
/
app.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
version: '3'
services:
dotnet-agent-portal-gateway:
build:
context: ../
dockerfile: AgentPortalApiGateway/Dockerfile
image: dotnet-agent-portal-gateway
container_name: dotnet-agent-portal-gateway
network_mode: host
dotnet-auth-service:
build:
context: ../
dockerfile: AuthService/Dockerfile
image: dotnet-auth-service
container_name: dotnet-auth-service
network_mode: host
dotnet-chat-service:
build:
context: ../
dockerfile: ChatService/Dockerfile
image: dotnet-chat-service
container_name: dotnet-chat-service
network_mode: host
dotnet-payment-service:
build:
context: ../
dockerfile: PaymentService/Dockerfile
image: dotnet-payment-service
container_name: dotnet-payment-service
network_mode: host
dotnet-policy-search-service:
build:
context: ../
dockerfile: PolicySearchService/Dockerfile
image: dotnet-policy-search-service
container_name: dotnet-policy-search-service
network_mode: host
dotnet-policy-service:
build:
context: ../
dockerfile: PolicyService/Dockerfile
image: dotnet-policy-service
container_name: dotnet-policy-service
network_mode: host
dotnet-pricing-service:
build:
context: ../
dockerfile: PricingService/Dockerfile
image: dotnet-pricing-service
container_name: dotnet-pricing-service
network_mode: host
dotnet-product-service:
build:
context: ../
dockerfile: ProductService/Dockerfile
image: dotnet-product-service
container_name: dotnet-product-service
network_mode: host
dotnet-web-vue:
build: ../Web
image: dotnet-web-vue
container_name: dotnet-web-vue
network_mode: host