-
Notifications
You must be signed in to change notification settings - Fork 0
/
certificates.yml
executable file
·318 lines (302 loc) · 9.49 KB
/
certificates.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
version: '3.9'
services:
web:
image: 127.0.0.1:5000/certificates-web
environment:
- HCAPTCHA_SITEKEY=${HCAPTCHA_SITEKEY}
- API_URI=${API_URI}
build:
context: .
dockerfile: ./docker/Dockerfile.web
hostname: ${API_URI:-web}
command: yarn workspace @certificates/web prod
deploy:
labels:
- traefik.enable=true
- traefik.docker.network=public
- traefik.http.routers.certificates-web.service=certificates-web
- traefik.http.routers.certificates-web.entrypoints=web
- traefik.http.routers.certificates-web.rule=Host(`${DOMAIN:-localhost}`)
- traefik.http.services.certificates-web.loadbalancer.server.port=${WEB_PORT:-3000}
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
networks:
- public
gateway:
image: 127.0.0.1:5000/certificates-gateway
environment:
- USER_SERVICE_PORT=${USER_SERVICE_PORT:-3004}
- MONGO_GUI_USER=${MONGO_GUI_USER}
- MONGO_GUI_PASSWORD=${MONGO_GUI_PASSWORD}
- MONGO_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD}
- MONGO_GUI_PORT=${MONGO_GUI_PORT:-4000}
build:
context: .
dockerfile: ./docker/Dockerfile.gateway
hostname: ${API_GATEWAY_HOST:-gateway}
command: yarn workspace @certificates/gateway prod
deploy:
labels:
- traefik.enable=true
- traefik.docker.network=public
- traefik.http.routers.certificates-gateway.service=certificates-gateway
- traefik.http.routers.certificates-gateway.entrypoints=web
- traefik.http.routers.certificates-gateway.rule=(Host(`${DOMAIN:-localhost}`) && PathPrefix(`/gateway`))
- traefik.http.routers.certificates-gateway.middlewares=certificates-gateway-redirectregex, certificates-gateway-replacepathregex
- traefik.http.middlewares.certificates-gateway-replacepathregex.replacepathregex.regex=^/gateway/(.*)
- traefik.http.middlewares.certificates-gateway-replacepathregex.replacepathregex.replacement=/$$1
- traefik.http.middlewares.certificates-gateway-redirectregex.redirectregex.regex=^(.*)/gateway$$
- traefik.http.middlewares.certificates-gateway-redirectregex.redirectregex.replacement=$$1/gateway/
- traefik.http.services.certificates-gateway.loadbalancer.server.port=${API_GATEWAY_PORT:-3001}
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
networks:
- public
- backend
user:
image: 127.0.0.1:5000/certificates-user
environment:
- USER_SERVICE_PORT=${USER_SERVICE_PORT:-3004}
- MONGO_GUI_USER=${MONGO_GUI_USER}
- MONGO_GUI_PASSWORD=${MONGO_GUI_PASSWORD}
- MONGO_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD}
- MONGO_GUI_PORT=${MONGO_GUI_PORT:-4000}
build:
context: .
dockerfile: ./docker/Dockerfile.user
hostname: ${USER_GATEWAY_HOST:-user}
command: yarn workspace @certificates/user prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
depends_on:
- db
networks:
- backend
event:
image: 127.0.0.1:5000/certificates-event
environment:
- EVENT_SERVICE_PORT=${EVENT_SERVICE_PORT:-3002}
- MONGO_GUI_USER=${MONGO_GUI_USER}
- MONGO_GUI_PASSWORD=${MONGO_GUI_PASSWORD}
- MONGO_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD}
- MONGO_GUI_PORT=${MONGO_GUI_PORT:-4000}
build:
context: .
dockerfile: ./docker/Dockerfile.event
hostname: ${EVENT_SERVICE_HOST:-event}
command: yarn workspace @certificates/event prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
depends_on:
- db
networks:
- backend
generic:
image: 127.0.0.1:5000/certificates-generic
environment:
- GENERIC_SERVICE_PORT=${GENERIC_SERVICE_PORT:-3007}
- MONGO_GUI_USER=${MONGO_GUI_USER}
- MONGO_GUI_PASSWORD=${MONGO_GUI_PASSWORD}
- MONGO_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD}
- MONGO_GUI_PORT=${MONGO_GUI_PORT:-4000}
build:
context: .
dockerfile: ./docker/Dockerfile.generic
hostname: ${GENERIC_SERVICE_HOST:-generic}
command: yarn workspace @certificates/generic prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
depends_on:
- db
networks:
- backend
activity:
image: 127.0.0.1:5000/certificates-activity
environment:
- ACTIVITY_SERVICE_PORT=${ACTIVITY_SERVICE_PORT:-3008}
- MONGO_GUI_USER=${MONGO_GUI_USER}
- MONGO_GUI_PASSWORD=${MONGO_GUI_PASSWORD}
- MONGO_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD}
- MONGO_GUI_PORT=${MONGO_GUI_PORT:-4000}
build:
context: .
dockerfile: ./docker/Dockerfile.activity
hostname: ${ACTIVITY_SERVICE_HOST:-activity}
command: yarn workspace @certificates/activity prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
depends_on:
- db
networks:
- backend
certificate:
image: 127.0.0.1:5000/certificates-certificate
environment:
- CERTIFICATE_SERVICE_PORT=${CERTIFICATE_SERVICE_PORT:-3009}
- MONGO_GUI_USER=${MONGO_GUI_USER}
- MONGO_GUI_PASSWORD=${MONGO_GUI_PASSWORD}
- MONGO_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD}
- MONGO_GUI_PORT=${MONGO_GUI_PORT:-4000}
build:
context: .
dockerfile: ./docker/Dockerfile.certificate
hostname: ${CERTIFICATE_SERVICE_HOST:-certificate}
command: yarn workspace @certificates/certificate prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
depends_on:
- db
networks:
- backend
token:
image: 127.0.0.1:5000/certificates-token
environment:
- TOKEN_SERVICE_PORT=${TOKEN_SERVICE_PORT:-3003}
- TOKEN_EXPIRES_IN=${TOKEN_EXPIRES_IN:-1d}
- APP_SECRET=${APP_SECRET}
- MONGO_GUI_USER=${MONGO_GUI_USER}
- MONGO_GUI_PASSWORD=${MONGO_GUI_PASSWORD}
- MONGO_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD}
- MONGO_GUI_PORT=${MONGO_GUI_PORT:-4000}
build:
context: .
dockerfile: ./docker/Dockerfile.token
hostname: ${TOKEN_SERVICE_HOST:-token}
command: yarn workspace @certificates/token prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
depends_on:
- db
networks:
- backend
mailer:
image: 127.0.0.1:5000/certificates-mailer
environment:
- MAILER_SERVICE_PORT=${MAILER_SERVICE_PORT:-3005}
- MAILER_DISABLED=${MAILER_DISABLED:-0}
- MAILER_HOST=${MAILER_HOST}
- MAILER_PORT=${MAILER_PORT}
- MAILER_TLS=${MAILER_TLS}
- MAILER_SECURE=${MAILER_SECURE}
- MAILER_USER=${MAILER_USER}
- MAILER_PASS=${MAILER_PASS}
- MAILER_FROM=${MAILER_FROM}
build:
context: .
dockerfile: ./docker/Dockerfile.mailer
hostname: ${MAILER_SERVICE_HOST:-mailer}
command: yarn workspace @certificates/mailer prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
networks:
- backend
permission:
image: 127.0.0.1:5000/certificates-permission
environment:
- PERMISSION_SERVICE_PORT=${PERMISSION_SERVICE_PORT:-3006}
build:
context: .
dockerfile: ./docker/Dockerfile.permission
hostname: ${PERMISSION_SERVICE_HOST:-permission}
command: yarn workspace @certificates/permission prod
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
networks:
- backend
storage:
image: 127.0.0.1:5000/certificates-storage
environment:
- STORAGE_SERVICE_PORT=${STORAGE_SERVICE_PORT:-3010}
build:
context: .
dockerfile: ./docker/Dockerfile.storage
hostname: ${STORAGE_SERVICE_HOST:-storage}
command: yarn workspace @certificates/storage prod
volumes:
- storage_data:/usr/src/app/packages/backend/storage/uploads
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
networks:
- backend
db:
image: bitnami/mongodb:5.0
environment:
- MONGODB_DATABASE=${MONGO_DATABASE:-certificates}
- MONGODB_USERNAME=${MONGO_USER:-mongo}
- MONGODB_PASSWORD=${MONGO_PASSWORD:-pass}
- MONGODB_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD:-mongo}
volumes:
- mongo_data:/bitnami/mongodb
networks:
- backend
gui-db:
image: mongo-express:1.0.0-alpha.4
environment:
- ME_CONFIG_BASICAUTH_USERNAME=${MONGO_GUI_USER:-admin}
- ME_CONFIG_BASICAUTH_PASSWORD=${MONGO_GUI_PASSWORD:-admin}
- ME_CONFIG_MONGODB_ENABLE_ADMIN=false
- ME_CONFIG_MONGODB_SERVER=${MONGO_HOST:-db}
- ME_CONFIG_MONGODB_PORT=${MONGO_PORT:-27017}
- ME_CONFIG_MONGODB_AUTH_DATABASE=${MONGO_DATABASE:-certificates}
- ME_CONFIG_MONGODB_AUTH_USERNAME=${MONGO_USER:-mongo}
- ME_CONFIG_MONGODB_AUTH_PASSWORD=${MONGO_PASSWORD:-pass}
depends_on:
- db
deploy:
labels:
- traefik.enable=true
- traefik.docker.network=public
- traefik.http.routers.mongo-gui.service=mongo-gui
- traefik.http.routers.mongo-gui.entrypoints=web
- traefik.http.routers.mongo-gui.rule=Host(`mongo.${DOMAIN:-localhost}`)
- traefik.http.services.mongo-gui.loadbalancer.server.port=8081
logging:
driver: json-file
options:
max-size: 10m
max-file: 5
networks:
- backend
- public
volumes:
mongo_data: {}
storage_data: {}
networks:
backend:
name: backend
driver: overlay
public:
external: true