-
Notifications
You must be signed in to change notification settings - Fork 375
/
docker-compose.yml
327 lines (325 loc) · 9.43 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
services:
tracer-2.5:
image: ghcr.io/datadog/images-rb/engines/ruby:2.5
working_dir: /app
command: /bin/bash
depends_on: &common-depends-on
- ddagent
- elasticsearch
- memcached
- mongodb
- mysql
- opensearch
- postgres
- presto
- redis
- testagent
env_file: ./.env
environment: &common-environment
BUNDLE_GEMFILE: /app/ruby-2.5.gemfile
DD_AGENT_HOST: testagent
DD_TRACE_AGENT_PORT: 9126
TEST_DATADOG_INTEGRATION: 1
TEST_ELASTICSEARCH_HOST: elasticsearch
TEST_MEMCACHED_HOST: memcached
TEST_MONGODB_HOST: mongodb
TEST_MYSQL_HOST: mysql
TEST_OPENSEARCH_HOST: opensearch
TEST_OPENSEARCH_PORT: 9200
TEST_POSTGRES_HOST: postgres
TEST_PRESTO_HOST: presto
TEST_REDIS_HOST: redis
DATADOG_GEM_CI: 'true'
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-2.5:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-2.6:
image: ghcr.io/datadog/images-rb/engines/ruby:2.6
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/ruby-2.6.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-2.6:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-2.7:
image: ghcr.io/datadog/images-rb/engines/ruby:2.7
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/ruby-2.7.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-2.7:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-3.0:
image: ghcr.io/datadog/images-rb/engines/ruby:3.0
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/ruby-3.0.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-3.0:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-3.1:
image: ghcr.io/datadog/images-rb/engines/ruby:3.1
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/ruby-3.1.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-3.1:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-3.2:
image: ghcr.io/datadog/images-rb/engines/ruby:3.2
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/ruby-3.2.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-3.2:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-3.3:
image: ghcr.io/datadog/images-rb/engines/ruby:3.3
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/ruby-3.3.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-3.3:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-3.4:
image: ghcr.io/datadog/images-rb/engines/ruby:3.4
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/ruby-3.4.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- extension-build-tmp:/app/tmp
- bundle-3.4:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
# ADD NEW RUBIES HERE
tracer-jruby-9.2:
image: ghcr.io/datadog/images-rb/engines/jruby:9.2
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/jruby-9.2.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-jruby-9.2:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-jruby-9.3:
image: ghcr.io/datadog/images-rb/engines/jruby:9.3
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/jruby-9.3.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-jruby-9.3:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
tracer-jruby-9.4:
image: ghcr.io/datadog/images-rb/engines/jruby:9.4
working_dir: /app
command: /bin/bash
depends_on: *common-depends-on
env_file: ./.env
environment:
<<: *common-environment
BUNDLE_GEMFILE: /app/jruby-9.4.gemfile
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-jruby-9.4:/usr/local/bundle
- "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}"
ddagent:
image: datadog/agent
environment:
- DD_APM_ENABLED=true
- DD_BIND_HOST=0.0.0.0
- "DD_API_KEY=${DD_API_KEY}"
- DD_HOSTNAME=dd-trace-rb-ci
- DD_APM_RECEIVER_SOCKET=/var/run/datadog/apm.socket
- DD_REMOTE_CONFIGURATION_ENABLED=true
expose:
- "8125/udp"
- "8126"
ports:
- "127.0.0.1:${DD_METRIC_AGENT_PORT}:8125/udp"
- "127.0.0.1:${DD_REAL_AGENT_PORT}:8126"
volumes:
- ddagent_var_run:/var/run/datadog
testagent:
image: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.12.0
ports:
- "127.0.0.1:${DD_TRACE_AGENT_PORT}:9126"
depends_on:
- ddagent
env_file: ./.env
environment:
- LOG_LEVEL=DEBUG
- TRACE_LANGUAGE=ruby
- DD_TRACE_AGENT_URL=http://${DD_REAL_AGENT_HOST}:${DD_REAL_AGENT_PORT}
- PORT=${DD_TRACE_AGENT_PORT}
- DD_POOL_TRACE_CHECK_FAILURES=true
- DD_DISABLE_ERROR_RESPONSES=true
- ENABLED_CHECKS=trace_content_length,trace_stall,meta_tracer_version_header,trace_count_header,trace_peer_service,trace_dd_service
elasticsearch:
image: elasticsearch:8.1.3
expose:
- "9200"
- "9300"
ports:
- "127.0.0.1:${TEST_ELASTICSEARCH_REST_PORT}:9200"
- "127.0.0.1:${TEST_ELASTICSEARCH_NATIVE_PORT}:9300"
environment:
# Ensure production cluster requirements are not enforced
- discovery.type=single-node
- xpack.security.enabled=false
- ES_JAVA_OPTS=-Xmx750m
memcached:
image: memcached:1.5-alpine
expose:
- "11211"
ports:
- "127.0.0.1:${TEST_MEMCACHED_PORT}:11211"
mongodb:
image: mongo:3.6
expose:
- "27017"
ports:
- "127.0.0.1:${TEST_MONGODB_PORT}:27017"
mysql:
image: mysql:8.0
environment:
- MYSQL_DATABASE=$TEST_MYSQL_DB
- MYSQL_ROOT_PASSWORD=$TEST_MYSQL_ROOT_PASSWORD
- MYSQL_PASSWORD=$TEST_MYSQL_PASSWORD
- MYSQL_USER=$TEST_MYSQL_USER
# As of MySQL 8.0, caching_sha2_password is now the default authentication plugin
# rather than mysql_native_password which was the default in previous versions.
command: --default-authentication-plugin=mysql_native_password
expose:
- "3306"
ports:
- "127.0.0.1:${TEST_MYSQL_PORT}:3306"
opensearch:
image: opensearchproject/opensearch:2.8.0
environment:
- discovery.type=single-node
- DISABLE_SECURITY_PLUGIN=true
- DISABLE_PERFORMANCE_ANALYZER_AGENT_CLI=true
# Make sure it works on nearly full disk.
- cluster.routing.allocation.disk.threshold_enabled=true
- cluster.routing.allocation.disk.watermark.low=3gb
- cluster.routing.allocation.disk.watermark.high=2gb
- cluster.routing.allocation.disk.watermark.flood_stage=1gb
- cluster.routing.allocation.disk.threshold_enabled=false
ports:
- 9201:9200
postgres:
image: postgres:9.6
environment:
- POSTGRES_PASSWORD=$TEST_POSTGRES_PASSWORD
- POSTGRES_USER=$TEST_POSTGRES_USER
- POSTGRES_DB=$TEST_POSTGRES_DB
expose:
- "5432"
ports:
- "127.0.0.1:${TEST_POSTGRES_PORT}:5432"
presto:
# Move to trinodb/trino after https://github.com/treasure-data/presto-client-ruby/issues/64 is resolved.
image: starburstdata/presto:332-e.9
expose:
- "8080"
ports:
- "127.0.0.1:${TEST_PRESTO_PORT}:8080"
redis:
image: redis:6.2
expose:
- "6379"
ports:
- "127.0.0.1:${TEST_REDIS_PORT}:6379"
volumes:
bundle-2.5:
bundle-2.6:
bundle-2.7:
bundle-3.0:
bundle-3.1:
bundle-3.2:
bundle-3.3:
bundle-3.4:
# ADD NEW RUBIES HERE
bundle-jruby-9.2:
bundle-jruby-9.3:
bundle-jruby-9.4:
ddagent_var_run:
# Temporary folder used while compiling the profiling native extension. We place this in a volume to avoid the
# massive performance hit (seconds to minutes) that we get when the tmp folder is shared with the host on macOS.
# Hopefully this will be fixed by
# https://www.docker.com/blog/speed-boost-achievement-unlocked-on-docker-desktop-4-6-for-mac/
# (which is not available for those of us still on macOS 11).
extension-build-tmp: