-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml
executable file
·108 lines (82 loc) · 2.26 KB
/
docker-compose.override.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
96
97
98
99
100
101
102
103
104
105
106
107
108
version: '3.4'
services:
recall-zipkin:
ports:
- "35411:9411"
recall-seq:
environment:
- ACCEPT_EULA=Y
ports:
- "35340:80"
recall-sqldata:
environment:
- SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
ports:
- "35433:1433"
volumes:
- recall-sqldata:/var/opt/mssql
recall-rabbitmq:
ports:
- "35672:5672"
- "35673:15672"
recall-envoygateway:
volumes:
- ./Infrastructure/envoy.yaml:/etc/envoy/envoy.yaml
ports:
- "35191:80"
- "35181:8001"
recall-envoygateway-dapr:
command: [ "./daprd",
"-app-id", "recall-envoygateway",
"-app-port", "80",
"-components-path", "/components"
]
volumes:
- "./dapr/components/:/components"
recall-textitemapi:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_HTTP_PORTS=8080
ports:
- "35210:8080"
- "50001"
recall-textitemapi-dapr:
command: [ "./daprd",
"-app-id", "recall-textitemapi",
"-app-port", "8080",
"-components-path", "/components",
"-config", "/configuration/recall-configuration.yaml"
]
volumes:
- "./dapr/components/:/components"
- "./dapr/configuration/:/configuration"
recall-servicestatus:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_HTTP_PORTS=8080
ports:
- "35107:8080"
recall-listapi:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_HTTP_PORTS=8080
ports:
- "35200:8080"
recall-listapi-dapr:
command: [ "./daprd",
"-app-id", "recall-listapi",
"-app-port", "8080",
"-components-path", "/components",
"-config", "/configuration/recall-configuration.yaml" ]
volumes:
- "./dapr/components/:/components"
- "./dapr/configuration/:/configuration"
recall-identity.api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
ports:
- "35105:80"
volumes:
recall-sqldata:
external: false