-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
444 lines (428 loc) · 11.5 KB
/
docker-compose.yml
File metadata and controls
444 lines (428 loc) · 11.5 KB
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
services:
fluent-bit:
image: fluent/fluent-bit:latest
container_name: fluent_bit
platform: linux/arm64
restart: unless-stopped
ports:
- "24224:24224"
- "24224:24224/udp"
volumes:
- ./.docker/fluent-bit/fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf:ro
depends_on:
opensearch:
condition: service_healthy
opensearch-init:
condition: service_completed_successfully
networks: [observability]
deploy:
resources:
limits:
memory: 128m
reservations:
memory: 32m
opensearch:
image: opensearchproject/opensearch:2
container_name: opensearch
restart: unless-stopped
networks: [observability]
environment:
- discovery.type=single-node
- plugins.security.disabled=true
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_INITIAL_ADMIN_PASSWORD:-ChangeMe_OpenSearch_2026!9}
- OPENSEARCH_JAVA_OPTS=-Xms1g -Xmx1g
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
ports:
- "9200:9200"
- "9600:9600"
volumes:
- ./.docker/opensearch/data:/usr/share/opensearch/data
healthcheck:
test:
["CMD-SHELL", "curl -fsS http://localhost:9200 >/dev/null || exit 1"]
interval: 10s
timeout: 5s
retries: 10
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.opensearch
fluentd-async: "true"
deploy:
resources:
limits:
memory: 2g
reservations:
memory: 1g
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:2
container_name: opensearch_dashboards
restart: unless-stopped
networks: [observability]
ports:
- "5601:5601"
environment:
- OPENSEARCH_HOSTS=["http://opensearch:9200"]
- DISABLE_SECURITY_DASHBOARDS_PLUGIN=true
volumes:
- ./.docker/opensearch/opensearch_dashboards.yml:/usr/share/opensearch-dashboards/config/opensearch_dashboards.yml:ro
depends_on:
opensearch:
condition: service_healthy
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.opensearch-dashboards
fluentd-async: "true"
deploy:
resources:
limits:
memory: 512m
reservations:
memory: 256m
opensearch-init:
image: curlimages/curl:latest
container_name: opensearch_init
restart: "no"
networks: [observability]
volumes:
- ./.docker/opensearch/init:/opensearch-init:ro
- ./.docker/opensearch/pipelines:/pipelines:ro
command: sh /opensearch-init/init-indices.sh
environment:
- OPENSEARCH_URL=http://opensearch:9200
depends_on:
opensearch:
condition: service_healthy
deploy:
resources:
limits:
memory: 32m
opensearch-dashboards-init:
image: curlimages/curl:latest
container_name: opensearch_dashboards_init
restart: "no"
networks: [observability]
volumes:
- ./.docker/opensearch/init:/opensearch-init:ro
command: sh /opensearch-init/init-dashboards.sh
environment:
- OSD_URL=http://opensearch-dashboards:5601
depends_on:
opensearch-dashboards:
condition: service_started
deploy:
resources:
limits:
memory: 32m
data-prepper:
image: opensearchproject/data-prepper:2
container_name: data_prepper
restart: unless-stopped
networks: [observability]
volumes:
- ./.docker/data-prepper/pipelines.yaml:/usr/share/data-prepper/pipelines/pipelines.yaml:ro
- ./.docker/data-prepper/data-prepper-config.yaml:/usr/share/data-prepper/config/data-prepper-config.yaml:ro
ports:
- "21890:21890"
depends_on:
opensearch:
condition: service_healthy
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.data-prepper
fluentd-async: "true"
deploy:
resources:
limits:
memory: 512m
reservations:
memory: 256m
tempo:
image: grafana/tempo:2.9.0
container_name: tempo
restart: unless-stopped
networks: [observability]
command: ["-config.file=/etc/tempo/tempo.yaml"]
volumes:
- ./.docker/tempo/tempo.yaml:/etc/tempo/tempo.yaml:ro
- ./.docker/tempo/data:/tmp/tempo
ports:
- "3200:3200"
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.tempo
fluentd-async: "true"
deploy:
resources:
limits:
memory: 512m
reservations:
memory: 128m
otel-collector:
image: otel/opentelemetry-collector-contrib:0.147.0
container_name: otel_collector
restart: unless-stopped
networks: [observability]
command: ["--config=/etc/otel/otel-config.yaml"]
volumes:
- ./.docker/otel:/etc/otel:ro
ports:
- "4317:4317"
- "4318:4318"
- "8889:8889"
depends_on:
data-prepper:
condition: service_started
tempo:
condition: service_started
opensearch:
condition: service_healthy
opensearch-init:
condition: service_completed_successfully
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.otel-collector
fluentd-async: "true"
deploy:
resources:
limits:
memory: 256m
reservations:
memory: 64m
cadvisor:
image: wywywywy/docker_stats_exporter:latest
container_name: cadvisor
restart: unless-stopped
networks: [observability]
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- "8080:9487"
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.cadvisor
fluentd-async: "true"
deploy:
resources:
limits:
memory: 64m
cpus: "0.10"
reservations:
memory: 16m
cpus: "0.05"
prometheus:
image: prom/prometheus@sha256:4a61322ac1103a0e3aea2a61ef1718422a48fa046441f299d71e660a3bc71ae9
container_name: prometheus
restart: unless-stopped
networks: [observability]
command:
- "--config.file=/etc/prometheus/prometheus.yml"
- "--web.listen-address=:9292"
volumes:
- ./.docker/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
- ./.docker/prometheus/data:/prometheus
ports:
- "9292:9292"
depends_on:
- otel-collector
- cadvisor
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.prometheus
fluentd-async: "true"
deploy:
resources:
limits:
memory: 256m
reservations:
memory: 64m
grafana:
image: grafana/grafana:12.4
container_name: grafana
restart: unless-stopped
networks: [observability]
ports:
- "3001:3000"
environment:
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
GF_AUTH_DISABLE_LOGIN_FORM: "true"
GF_INSTALL_PLUGINS: "grafana-opensearch-datasource"
volumes:
- ./.docker/grafana/data:/var/lib/grafana
- ./.docker/grafana/provisioning:/etc/grafana/provisioning:ro
depends_on:
- prometheus
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.grafana
fluentd-async: "true"
deploy:
resources:
limits:
memory: 256m
reservations:
memory: 64m
postgres:
image: docker.io/postgres:17
container_name: postgres
restart: unless-stopped
networks: [observability]
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.postgres
fluentd-async: "true"
healthcheck:
test:
[
"CMD-SHELL",
"pg_isready -U ${POSTGRES_USER:-postgres} -d ${POSTGRES_DB:-postgres}",
]
interval: 3s
timeout: 3s
retries: 20
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres} # CHANGEME
POSTGRES_DB: ${POSTGRES_DB:-postgres}
TZ: UTC
PGTZ: UTC
ports:
- "5432:5432"
volumes:
- ./.docker/postgres/data:/var/lib/postgresql/data
- ./.docker/postgres/init:/docker-entrypoint-initdb.d:ro
deploy:
resources:
limits:
memory: 256m
cpus: "0.50"
reservations:
memory: 128m
cpus: "0.10"
postgres-exporter:
image: prometheuscommunity/postgres-exporter@sha256:e96064f876226d94bb6ce48a4c4b3dd76edba91168ec1ab024e5c4b959310b0f
container_name: postgres-exporter
restart: unless-stopped
networks: [observability]
environment:
DATA_SOURCE_NAME: postgresql://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-postgres}?sslmode=disable
ports:
- "9187:9187"
depends_on:
postgres:
condition: service_healthy
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.postgres-exporter
fluentd-async: "true"
deploy:
resources:
limits:
memory: 64m
cpus: "0.10"
reservations:
memory: 16m
cpus: "0.05"
web:
build: ./web
container_name: application-web
restart: unless-stopped
networks: [observability]
depends_on:
- api
ports:
- "3000:3000"
volumes:
- ./web:/usr/src/app
- web_node_modules:/usr/src/app/node_modules
command: >
sh -c "npm install && exec npm run dev"
environment:
API_URL: http://api:8082
OPENSEARCH_URL: http://opensearch:9200
NODE_OPTIONS: --max-old-space-size=1024
OTEL_SDK_DISABLED: "false"
OTEL_SERVICE_NAME: application-example-web
OTEL_EXPORTER_OTLP_ENDPOINT: http://otel-collector:4318
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.web
fluentd-async: "true"
# Example applications instrumented for observability (same code, different services)
api:
build: ./api
container_name: application-api
restart: unless-stopped
networks: [observability]
depends_on:
- otel-collector
- postgres
ports:
- "8088:8082"
- "9465:9464"
volumes:
- ./api:/usr/src/app
- api_node_modules:/usr/src/app/node_modules
command: >
sh -c "npm install && npm run start:dev"
environment:
APP_NAME: application-example-api
OTEL_SDK_DISABLED: "false"
OTEL_SERVICE_NAME: application-example-api
OTEL_EXPORTER_OTLP_ENDPOINT: http://otel-collector:4317
OTEL_EXPORTER_OTLP_PROTOCOL: grpc
DB_HOST: postgres
DB_PORT: 5432
DB_USER: ${POSTGRES_USER:-postgres}
DB_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
DB_NAME: observability
API_KEY: ${API_KEY:-api-secret-key}
NODE_OPTIONS: --max-old-space-size=768
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
tag: docker.api
fluentd-async: "true"
deploy:
resources:
limits:
memory: 500m
cpus: "0.3"
reservations:
memory: 256m
cpus: "0.10"
volumes:
web_node_modules:
api_node_modules:
networks:
observability:
external: true