forked from signalfx/signalfx-dotnet-tracing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
466 lines (433 loc) · 13.8 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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
version: '3'
services:
servicestackredis:
image: redis:4-alpine
command: redis-server --bind 0.0.0.0
ports:
- "127.0.0.1:6379:6379"
stackexchangeredis:
image: redis:4-alpine
command: redis-server --bind 0.0.0.0
ports:
- "127.0.0.1:6389:6379"
mongo:
image: mongo:4.0.9
ports:
- "127.0.0.1:27017:27017"
command: mongod
elasticsearch7:
image: docker.elastic.co/elasticsearch/elasticsearch:7.10.1
ports:
- "127.0.0.1:9210:9200"
- "127.0.0.1:9310:9300"
environment:
- discovery.type=single-node
elasticsearch6:
image: docker.elastic.co/elasticsearch/elasticsearch:6.4.2
ports:
- "127.0.0.1:9200:9200"
- "127.0.0.1:9300:9300"
environment:
- discovery.type=single-node
elasticsearch5:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.16
ports:
- "127.0.0.1:9205:9200"
- "127.0.0.1:9305:9300"
environment:
- discovery.type=single-node
postgres:
image: postgres:10.5-alpine
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=postgres
ports:
- "127.0.0.1:5432:5432"
mysql:
image: mysql/mysql-server:5.7
environment:
- MYSQL_DATABASE=world
- MYSQL_ROOT_PASSWORD=mysqldb
- MYSQL_USER=mysqldb
- MYSQL_PASSWORD=mysqldb
ports:
- "127.0.0.1:3307:3306"
sqlserver:
image: mcr.microsoft.com/mssql/server:latest
ports:
- "127.0.0.1:1433:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Strong!Passw0rd
wcfservice:
image: mcr.microsoft.com/dotnet/framework/wcf:4.8
ports:
- "127.0.0.1:8585:8585"
zookeeper:
image: confluentinc/cp-zookeeper:6.2.0
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ports:
- 2181:2181
# based on: https://docs.confluent.io/platform/current/installation/docker/config-reference.html
kafka:
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
ports:
- 29092:29092
environment:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
rabbitmq:
image: rabbitmq:3-management
command: rabbitmq-server
ports:
- "127.0.0.1:5672:5672"
- "127.0.0.1:15672:15672"
build:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
environment:
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=${publishTargetFramework}
command: /project/docker/build.sh
volumes:
- ./:/project
package:
build:
context: ./
dockerfile: ./docker/package.dockerfile
image: datadog-package
environment:
- PKGTYPES=deb rpm tar
command: /project/docker/package.sh
volumes:
- ./:/project
package.alpine:
build:
context: ./
dockerfile: ./docker/package.alpine.dockerfile
image: datadog-package-alpine
environment:
- PKGTYPES=tar
- MUSL=true
command: /project/docker/package.sh
volumes:
- ./:/project
Profiler:
build:
context: ./
dockerfile: ./docker/native.dockerfile
image: datadog-native
command: /project/docker/Datadog.Trace.ClrProfiler.Native.sh
volumes:
- ./:/project
Profiler.Alpine:
build:
context: ./
dockerfile: ./docker/native.alpine.dockerfile
image: datadog-native-alpine
command: /project/docker/Datadog.Trace.ClrProfiler.Native.sh
volumes:
- ./:/project
Samples.ServiceStack.Redis:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it servicestackredis:6379 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.ServiceStack.Redis/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.ServiceStack.Redis.dll"
volumes:
- ./:/project
environment:
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
depends_on:
- servicestackredis
Samples.StackExchange.Redis:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it stackexchangeredis:6379 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.StackExchange.Redis/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.StackExchange.Redis.dll"
volumes:
- ./:/project
environment:
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
depends_on:
- stackexchangeredis
Samples.Elasticsearch:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it elasticsearch6:9200 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.Elasticsearch/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.Elasticsearch.dll"
volumes:
- ./:/project
environment:
- ELASTICSEARCH6_HOST=elasticsearch6:9200
depends_on:
- elasticsearch6
Samples.Elasticsearch.V5:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it elasticsearch5:9200 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.Elasticsearch.V5/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.Elasticsearch.V5.dll"
volumes:
- ./:/project
environment:
- ELASTICSEARCH5_HOST=elasticsearch5:9200
depends_on:
- elasticsearch5
Samples.SqlServer:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it sqlserver:1433 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.SqlServer/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.SqlServer.dll"
volumes:
- ./:/project
environment:
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
depends_on:
- sqlserver
Samples.Npgsql:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it postgres:5432 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.NpgSql/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.NpgSql.dll"
volumes:
- ./:/project
environment:
- POSTGRES_HOST=postgres
depends_on:
- postgres
Samples.MySql:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it mysql:3306 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.MySql/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.MySql.dll"
volumes:
- ./:/project
environment:
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
depends_on:
- mysql
Samples.MongoDB:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it mongo:27017 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.MongoDB/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.MongoDB.dll"
volumes:
- ./:/project
depends_on:
- mongo
Samples.Kafka:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it kafka:9092 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.Kafka/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.Kafka.dll"
volumes:
- ./:/project
depends_on:
- kafka
Samples.RabbitMQ:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: bash -c "/project/docker/with-profiler-logs.bash wait-for-it rabbitmq:5672 -- /project/docker/with-profiler.bash dotnet /project/samples/Samples.RabbitMQ/bin/${buildConfiguration}/${publishTargetFramework}/publish/Samples.RabbitMQ.dll"
volumes:
- ./:/project
environment:
- RABBITMQ_HOST=rabbitmq
depends_on:
- rabbitmq
# .NET Core does not have apk packages for .NET Core runtimes, they only have base images
# Until it's resolved, have a separate Dockerfile for each runtime
# (see: https://github.com/dotnet/runtime/issues/3406)
IntegrationTests.Alpine.Core21:
build:
context: ./
dockerfile: ./docker/dotnet.alpine.core21.dockerfile
image: datadog-dotnet-alpine-core21
command: /project/docker/Datadog.Trace.ClrProfiler.IntegrationTests.sh
volumes:
- ./:/project
environment:
- MONGO_HOST=mongo
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
- ELASTICSEARCH7_HOST=elasticsearch7:9200
- ELASTICSEARCH6_HOST=elasticsearch6:9200
- ELASTICSEARCH5_HOST=elasticsearch5:9200
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
- POSTGRES_HOST=postgres
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
- KAFKA_HOST=kafka:9092
- RABBITMQ_HOST=rabbitmq
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=netcoreapp2.1
depends_on:
- servicestackredis
- stackexchangeredis
- elasticsearch7
- elasticsearch6
- elasticsearch5
- sqlserver
- mongo
- postgres
- mysql
- kafka
- rabbitmq
IntegrationTests.Alpine.Core30:
build:
context: ./
dockerfile: ./docker/dotnet.alpine.core30.dockerfile
image: datadog-dotnet-alpine-core30
command: /project/docker/Datadog.Trace.ClrProfiler.IntegrationTests.sh
volumes:
- ./:/project
environment:
- MONGO_HOST=mongo
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
- ELASTICSEARCH7_HOST=elasticsearch7:9200
- ELASTICSEARCH6_HOST=elasticsearch6:9200
- ELASTICSEARCH5_HOST=elasticsearch5:9200
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
- POSTGRES_HOST=postgres
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
- KAFKA_HOST=kafka:9092
- RABBITMQ_HOST=rabbitmq
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=netcoreapp3.0
depends_on:
- servicestackredis
- stackexchangeredis
- elasticsearch7
- elasticsearch6
- elasticsearch5
- sqlserver
- mongo
- postgres
- mysql
- kafka
- rabbitmq
IntegrationTests.Alpine.Core31:
build:
context: ./
dockerfile: ./docker/dotnet.alpine.core31.dockerfile
image: datadog-dotnet-alpine-core31
command: /project/docker/Datadog.Trace.ClrProfiler.IntegrationTests.sh
volumes:
- ./:/project
environment:
- MONGO_HOST=mongo
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
- ELASTICSEARCH7_HOST=elasticsearch7:9200
- ELASTICSEARCH6_HOST=elasticsearch6:9200
- ELASTICSEARCH5_HOST=elasticsearch5:9200
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
- POSTGRES_HOST=postgres
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
- KAFKA_HOST=kafka:9092
- RABBITMQ_HOST=rabbitmq
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=netcoreapp3.1
depends_on:
- servicestackredis
- stackexchangeredis
- elasticsearch7
- elasticsearch6
- elasticsearch5
- sqlserver
- mongo
- postgres
- mysql
- kafka
- rabbitmq
IntegrationTests.Alpine.Core50:
build:
context: ./
dockerfile: ./docker/dotnet.alpine.core50.dockerfile
image: datadog-dotnet-alpine-core50
command: /project/docker/Datadog.Trace.ClrProfiler.IntegrationTests.sh
volumes:
- ./:/project
environment:
- MONGO_HOST=mongo
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
- ELASTICSEARCH7_HOST=elasticsearch7:9200
- ELASTICSEARCH6_HOST=elasticsearch6:9200
- ELASTICSEARCH5_HOST=elasticsearch5:9200
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
- POSTGRES_HOST=postgres
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
- KAFKA_HOST=kafka:9092
- RABBITMQ_HOST=rabbitmq
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=net5.0
depends_on:
- servicestackredis
- stackexchangeredis
- elasticsearch7
- elasticsearch6
- elasticsearch5
- sqlserver
- mongo
- postgres
- mysql
- kafka
- rabbitmq
IntegrationTests:
build:
context: ./
dockerfile: ./docker/dotnet.dockerfile
image: datadog-dotnet
command: /project/docker/Datadog.Trace.ClrProfiler.IntegrationTests.sh
volumes:
- ./:/project
environment:
- MONGO_HOST=mongo
- SERVICESTACK_REDIS_HOST=servicestackredis:6379
- STACKEXCHANGE_REDIS_HOST=stackexchangeredis:6379
- ELASTICSEARCH7_HOST=elasticsearch7:9200
- ELASTICSEARCH6_HOST=elasticsearch6:9200
- ELASTICSEARCH5_HOST=elasticsearch5:9200
- SQLSERVER_CONNECTION_STRING=Server=sqlserver;User=sa;Password=Strong!Passw0rd
- POSTGRES_HOST=postgres
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
- KAFKA_HOST=kafka:9092
- RABBITMQ_HOST=rabbitmq
- buildConfiguration=${buildConfiguration}
- publishTargetFramework=${publishTargetFramework}
depends_on:
- servicestackredis
- stackexchangeredis
- elasticsearch7
- elasticsearch6
- elasticsearch5
- sqlserver
- mongo
- postgres
- mysql
- kafka
- rabbitmq