-
Notifications
You must be signed in to change notification settings - Fork 43
/
docker-compose.yml
429 lines (405 loc) · 9.61 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
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
services:
startup:
extends:
file: common.yml
service: oada-uservice
image: oada/startup:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: startup
depends_on:
- redpanda
- arangodb
expose:
# expose only internally, not on host
- '8080'
environment:
# set RESETDATABASE to "yes" if you want to drop database on startup and recreate
RESETDATABASE: ${RESETDATABASE-no}
auth:
extends:
file: common.yml
service: oada-uservice
image: oada/auth:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: auth
depends_on:
- startup
networks:
http_net: {}
expose:
# expose only internally, not on host
- '8080'
# http-handler is in charge of maintaining connectiongs to clients and starting
# the first message for a request into Kafka
http-handler:
extends:
file: common.yml
service: oada-uservice
image: oada/http-handler:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: http-handler
healthcheck:
test: [ CMD, yarn, healthcheck ]
depends_on:
- startup
networks:
http_net: {}
expose:
# expose only internally, not on host
- '8080'
ports:
# Expose node inspect port
- 9230:9229
environment:
IGNORE_SCOPE:
volumes:
# Storage for non-JSON resources
- binary_data:/oada/binary
sync-handler:
extends:
file: common.yml
service: oada-uservice
image: oada/sync-handler:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: sync-handler
depends_on:
- startup
- proxy
networks:
http_net: {}
environment:
IGNORE_SCOPE:
write-handler:
extends:
file: common.yml
service: oada-uservice
image: oada/write-handler:${OADA_VERSION-build}
ports:
# Expose node inspect port
- 9231:9229
build:
args:
OADA_SERVICE: write-handler
depends_on:
- startup
users:
extends:
file: common.yml
service: oada-uservice
image: oada/users:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: users
depends_on:
- startup
rev-graph-update:
extends:
file: common.yml
service: oada-uservice
image: oada/rev-graph-update:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: rev-graph-update
depends_on:
- startup
well-known:
extends:
file: common.yml
service: oada-uservice
image: oada/well-known:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: well-known
depends_on:
- startup
networks:
http_net: {}
expose:
# expose only internally, not on host
- '8080'
webhooks:
extends:
file: common.yml
service: oada-uservice
image: oada/webhooks:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: webhooks
depends_on:
- startup
- proxy
networks:
http_net: {}
shares:
extends:
file: common.yml
service: oada-uservice
image: oada/shares:${OADA_VERSION-build}
build:
args:
OADA_SERVICE: shares
depends_on:
- startup
# swag with configs for auth, well-known, and http-handler
proxy:
build: ./support/proxy
image: oada/support-proxy:${OADA_VERSION-build}
cap_add:
- NET_ADMIN
networks:
http_net: {}
environment:
PUID: 1000
PGID: 1000
TZ: America/New_york
URL: ${DOMAIN:-localhost}
SUBDOMAINS: #e.g., www
VALIDATION: http
CERTPROVIDER: #optional
DNSPLUGIN: #optional
PROPAGATION: #optional
DUCKDNSTOKEN: #optional
EMAIL: #optional
ONLY_SUBDOMAINS: 'false' #optional
EXTRA_DOMAINS: #optional
STAGING: 'true' #optional (set false for release)
MAXMINDDB_LICENSE_KEY: #optional
volumes:
- proxy_config:/config
# Hack in self-signed ssl for localhost
- ./support/proxy/selfsigned:/config/keys/letsencrypt:ro
ports:
- '${BIND:-0.0.0.0}:${PORT_HTTPS:-443}:443'
- '${BIND:-0.0.0.0}:${PORT_HTTP:-80}:80'
restart: unless-stopped
# Arango is the main backend where core data and graph is stored
arangodb:
image: arangodb:3.9.3
restart: unless-stopped
networks:
arango_net: {}
volumes:
- arangodb_data:/var/lib/arangodb3
- arangodb_apps_data:/var/lib/arangodb3-apps
expose:
# expose only internally, not on host
- '8529'
environment:
# - ARANGO_RANDOM_ROOT_PASSWORD=1
ARANGO_NO_AUTH: 1
ARANGO_STORAGE_ENGINE: rocksdb
command: [ arangod, --server.statistics=false ]
# Redpanda is API compatible with kafka.
redpanda:
image: vectorized/redpanda:v22.2.5
restart: unless-stopped
networks:
kafka_net:
aliases:
- kafka
volumes:
- redpanda_data:/var/lib/redpanda/data
- redpanda_config:/etc/redpanda/
environment:
REDPANDA_MODE: ${REDPANDA_MODE-development}
entrypoint:
- /bin/sh
- -c
# Configure then run redpanda?
- |
rpk redpanda mode $$REDPANDA_MODE &&
rpk $$@
- rpk
command:
- redpanda
- start
- --smp
- '1'
- --reserve-memory
- 0M
- --overprovisioned
- --kafka-addr
- PLAINTEXT://kafka:9092
- --rpc-addr
- 0.0.0.0:33145
- --node-id
- '0'
- --advertise-kafka-addr
- PLAINTEXT://kafka:9092
expose:
# Kafka API port
- '9092'
# Internal RPC port
- '33145'
# Prometheus/HTTP Admin port
- '9644'
pino-pretty:
deploy:
replicas: 0
image: oada/startup:${OADA_VERSION-build}
restart: never
command: g:pino-pretty -C /.pino-prettyrc
volumes:
- ./.pino-prettyrc:/.pino-prettyrc
prometheus:
image: prom/prometheus
profiles:
- dashboard
- debug
depends_on:
- rpk-prometheus-conf
- redpanda
restart: unless-stopped
networks:
grafana_net: {}
kafka_net: {}
expose:
- '9090'
#ports:
# - '9090:9090'
volumes:
- prometheus_data:/prometheus
- prometheus_config:/etc/prometheus
# Generate redpanda config for prometheus
rpk-prometheus-conf:
extends:
service: redpanda
profiles:
- dashboard
- debug
restart: on-failure
volumes:
- prometheus_config:/etc/prometheus
user: root
entrypoint:
- /bin/sh
- -c
command:
- |
echo -n "scrape_configs:" > /etc/prometheus/prometheus.yml &&
rpk generate --seed-addr=redpanda prometheus-config >> /etc/prometheus/prometheus.yml
grafana:
image: grafana/grafana
profiles:
- dashboard
- debug
depends_on:
- prometheus
- grafana-provision-prometheus
- grafana-provision-dashboards
restart: unless-stopped
networks:
grafana_net:
ports:
- 3000:3000
volumes:
- grafana_data:/var/lib/grafana
- grafana_prov:/etc/grafana/provisioning
# Provision a grafana dashboard provider.
#
# Loads all dashboards in /var/lib/grafana/dashboards
grafana-provision-dashboards:
image: grafana/grafana
profiles:
- dashboard
- debug
depends_on:
- rpk-grafana-dashboard
restart: on-failure
volumes:
- grafana_prov:/etc/grafana/provisioning
entrypoint:
- /bin/sh
- -c
command:
- |
echo '
apiVersion: 1
providers:
- name: "dashboard provider"
type: file
options:
path: /var/lib/grafana/dashboards
foldersFromFileStructure: true
' > /etc/grafana/provisioning/dashboards/dashboards.yml
# Provision our prometheus instance as a grafana datasource
grafana-provision-prometheus:
image: grafana/grafana
profiles:
- dashboard
- debug
restart: on-failure
volumes:
- grafana_prov:/etc/grafana/provisioning
entrypoint:
- /bin/sh
- -c
command:
- |
echo '
apiVersion: 1
deleteDatasources:
- name: Prometheus
datasources:
- name: Prometheus
type: prometheus
access: proxy
url: http://prometheus:9090
' > /etc/grafana/provisioning/datasources/prometheus.yml
# Generate dashboard for our redpanda with our prometheus instance
rpk-grafana-dashboard:
extends:
service: redpanda
profiles:
- dashboard
- debug
restart: on-failure
volumes:
- grafana_data:/var/lib/grafana
- grafana_prov:/etc/grafana/provisioning
entrypoint:
- /bin/sh
- -c
command:
- |
mkdir -p /var/lib/grafana/dashboards/
rpk generate grafana-dashboard \
--datasource Prometheus \
--prometheus-url redpanda:9644/metrics \
> /var/lib/grafana/dashboards/redpanda.json
volumes:
arangodb_data:
arangodb_apps_data:
binary_data:
redpanda_data:
redpanda_config:
proxy_config:
prometheus_data:
prometheus_config:
grafana_data:
grafana_prov:
networks:
arango_net: {}
kafka_net: {}
http_net: {}
startup_net: {}
grafana_net: {}
# Set up Mutagen forwards
x-mutagen:
forward:
agrango:
source: tcp:localhost:8529
destination: network://arango_net:tcp:arangodb:8529
kafka:
source: tcp:localhost:9092
destination: network://kafka_net:tcp:kafka:9092
prometheus:
source: tcp:localhost:9090
destination: network://grafana_net:tcp:prometheus:9090
grafana:
source: tcp:localhost:3000
destination: network://grafana_net:tcp:grafana:3000