-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
218 lines (202 loc) · 6.12 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# The MIT License (MIT)
#
# Copyright (c) 2021 Alessandro De Blasis <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
version: '3.6'
services:
consul:
image: consul:1.10.2
environment:
NODE: consul
CONSUL_LOCAL_CONFIG: "{'skip_leave_on_interrupt': true}"
command: consul agent -server -bind 0.0.0.0 -node consul -client 0.0.0.0 -dns-port 53 -data-dir /consul/data -ui -bootstrap
networks:
- net
apigateway:
image: deblasis/stc_apigateway:latest
depends_on:
- consul
- authsvc
volumes:
- ./services/apigateway/app.yaml:/app.yaml
environment:
DEBLASIS_BINDONLOCALHOST: "false"
DEBLASIS_SSL_SERVERCERT: /certs/deblasis-stc.pem
DEBLASIS_APIGATEWAY_AUTHSERVICE_GRPCENDPOINT: deblasis-v1-AuthService.service.consul:9082
DEBLASIS_APIGATEWAY_CENTRALCOMMANDSERVICE_GRPCENDPOINT: deblasis-v1-CentralCommandService.service.consul:9482
DEBLASIS_APIGATEWAY_SHIPPINGSTATIONSERVICE_GRPCENDPOINT: deblasis-v1-ShippingStationService.service.consul:9282
networks:
- net
dns:
- 127.0.0.1
- 8.8.8.8
- 8.8.4.4
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8081/health"]
interval: 30s
timeout: 10s
retries: 3
auth_db:
image: postgres:13.4-alpine3.14
command: ["postgres", "-c", "log_statement=all"]
restart: always
environment:
PGUSER: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: secret
POSTGRES_DB: auth
DEBLASIS_CONSULT_HOST: consul
DEBLASIS_CONSULT_PORT: 8500
networks:
- net
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
interval: 10s
timeout: 5s
retries: 5
auth_dbsvc:
image: deblasis/stc_auth_dbsvc:latest
depends_on:
- consul
- auth_db
volumes:
- ./services/auth_dbsvc/app.yaml:/app.yaml
environment:
DEBLASIS_BINDONLOCALHOST: "false"
DEBLASIS_DB_ADDRESS: auth_db:5432
networks:
- net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9181/health"]
interval: 30s
timeout: 10s
retries: 3
authsvc:
image: deblasis/stc_authsvc:latest
depends_on:
- consul
- auth_dbsvc
volumes:
- ./services/authsvc/app.yaml:/app.yaml
environment:
DEBLASIS_BINDONLOCALHOST: "false"
DEBLASIS_SSL_SERVERCERT: /certs/deblasis-stc.pem
DEBLASIS_SSL_SERVERKEY: /certs/deblasis-stc-key.pem
DEBLASIS_JWT_PRIVKEYPATH: /certs/jwt.pem.key
DEBLASIS_JWT_PUBKEYPATH: /certs/jwt.pem.pub
networks:
- net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9081/health"]
interval: 30s
timeout: 10s
retries: 3
centralcommand_db:
image: postgres:13.4-alpine3.14
command: ["postgres"]
restart: always
environment:
PGUSER: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: secret
POSTGRES_DB: centralcommand
DEBLASIS_CONSULT_HOST: consul
DEBLASIS_CONSULT_PORT: 8500
networks:
- net
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
interval: 10s
timeout: 5s
retries: 5
centralcommand_dbsvc:
image: deblasis/stc_centralcommand_dbsvc:latest
depends_on:
- consul
- centralcommand_db
volumes:
- ./services/centralcommand_dbsvc/app.yaml:/app.yaml
environment:
DEBLASIS_BINDONLOCALHOST: "false"
DEBLASIS_DB_ADDRESS: centralcommand_db:5432
networks:
- net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9381/health"]
interval: 30s
timeout: 10s
retries: 3
centralcommandsvc:
image: deblasis/stc_centralcommandsvc:latest
depends_on:
- consul
- centralcommand_dbsvc
volumes:
- ./services/centralcommandsvc/app.yaml:/app.yaml
environment:
DEBLASIS_BINDONLOCALHOST: "false"
DEBLASIS_SSL_SERVERCERT: /certs/deblasis-stc.pem
networks:
- net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9081/health"]
interval: 30s
timeout: 10s
retries: 3
shippingstationsvc:
image: deblasis/stc_shippingstationsvc:latest
depends_on:
- consul
- centralcommandsvc
volumes:
- ./services/shippingstationsvc/app.yaml:/app.yaml
environment:
DEBLASIS_BINDONLOCALHOST: "false"
DEBLASIS_SSL_SERVERCERT: /certs/deblasis-stc.pem
networks:
- net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9081/health"]
interval: 30s
timeout: 10s
retries: 3
clessidrasvc:
image: deblasis/stc_clessidrasvc:latest
depends_on:
- consul
- centralcommand_dbsvc
volumes:
- ./services/clessidrasvc/app.yaml:/app.yaml
environment:
DEBLASIS_CENTRALCOMMANDDB: centralcommand_db:5432
networks:
- net
dns:
- 127.0.0.1
- 8.8.8.8
- 8.8.4.4
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9500/health"]
interval: 30s
timeout: 10s
retries: 3
networks:
net: