-
Notifications
You must be signed in to change notification settings - Fork 65
/
docker-compose.yml
603 lines (603 loc) · 16 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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
services:
aiohttp:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/aio-libs/aiohttp
APP_VERSION: ffcf9dc4ea157adc5b7b5b31b6cc69f37d533122
context: ./images/aiohttp
volumes:
- /tmp/aiohttp:/tmp
x-props:
is-traced: true
role: origin
apache_httpd:
build:
args:
APP_BRANCH: trunk
APP_REPO: https://github.com/apache/httpd
APP_VERSION: c72b74ccef72fb56becd55888a3aa783c4ab5b6b
APR_BRANCH: trunk
APR_REPO: https://github.com/apache/apr
APR_VERSION: d5d705a13105b92bc4f0e36751136f4ea36ceb7d
CONFIG_FILE: server.conf
context: ./images/apache_httpd
volumes:
- /tmp/apache_httpd:/tmp
x-props:
is-traced: true
role: origin
apache_httpd_proxy:
build:
args:
APP_BRANCH: trunk
APP_REPO: https://github.com/apache/httpd
APP_VERSION: c72b74ccef72fb56becd55888a3aa783c4ab5b6b
APR_BRANCH: trunk
APR_REPO: https://github.com/apache/apr
APR_VERSION: d5d705a13105b92bc4f0e36751136f4ea36ceb7d
BACKEND: echo
CONFIG_FILE: proxy.conf
context: ./images/apache_httpd
depends_on:
- echo
x-props:
role: transducer
apache_tomcat:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/apache/tomcat
APP_VERSION: 47c7a4030543dbf922802815be5f977db475270c
context: ./images/apache_tomcat
x-props:
role: origin
apache_traffic_server:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/apache/trafficserver
APP_VERSION: 9330cd3101ff1f5cf5cf1f69d4f3fcad69cc6fd1
BACKEND: echo
CACHE_CONFIG: cache.config
RECORDS_YAML: records.yaml
REMAP_CONFIG: remap.config
context: ./images/apache_traffic_server
depends_on:
- echo
x-props:
role: transducer
cheroot:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/cherrypy/cheroot
APP_VERSION: 1ff20b18e98e424e0616654c28c92524deef348a
context: ./images/cheroot
volumes:
- /tmp/cheroot:/tmp
x-props:
is-traced: true
role: origin
cpp_httplib:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/yhirose/cpp-httplib
APP_VERSION: 2d01e712866d3ed17d33569b8fa5345f5cade146
context: ./images/cpp_httplib
x-props:
role: origin
dart_stdlib:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/dart-lang/sdk
APP_VERSION: 590e25c32102421a42ad291998212284045b5f70
context: ./images/dart_stdlib
x-props:
role: origin
echo:
build:
context: ./images/echo
eclipse_grizzly:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/eclipse-ee4j/grizzly
APP_VERSION: 4316ca1adbaa00341d142d8ae571932294511a96
context: ./images/eclipse_grizzly
x-props:
port: 8080
role: origin
eclipse_jetty:
build:
args:
APP_BRANCH: jetty-12.0.x
APP_REPO: https://github.com/eclipse/jetty.project
APP_VERSION: fa0502db540b981fa51aec76bac9960edafd67c0
context: ./images/eclipse_jetty
x-props:
role: origin
fasthttp:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/valyala/fasthttp
APP_VERSION: c3050516d957b5bf75b353683c50302e4f955c6b
context: ./images/fasthttp
x-props:
role: origin
go_stdlib:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/golang/go
APP_SOURCE: app.go
APP_VERSION: af0c40311e2ee33ecd24971257606f42a49cf593
context: ./images/go_stdlib
x-props:
role: origin
go_stdlib_proxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/golang/go
APP_SOURCE: proxy.go
APP_VERSION: af0c40311e2ee33ecd24971257606f42a49cf593
BACKEND: echo
context: ./images/go_stdlib
depends_on:
- echo
x-props:
role: transducer
gunicorn:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/benoitc/gunicorn
APP_VERSION: 903792f152af6a27033d458020923cb2bcb11459
context: ./images/gunicorn
volumes:
- /tmp/gunicorn:/tmp
x-props:
is-traced: true
role: origin
h2o:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/h2o/h2o.git
APP_VERSION: 17759e38afbc6db59f8085015731fd7ddd8107b9
CONFIG_FILE: h2o.conf
PARSER_BRANCH: master
PARSER_REPO: https://github.com/h2o/picohttpparser
PARSER_VERSION: f8d0513f1a7a111f2597d643b073935a8afaf9e5
context: ./images/h2o
volumes:
- /tmp/h2o:/tmp
x-props:
is-traced: true
role: origin
h2o_proxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/h2o/h2o.git
APP_VERSION: 17759e38afbc6db59f8085015731fd7ddd8107b9
BACKEND: echo
CONFIG_FILE: h2o-proxy.conf
PARSER_BRANCH: master
PARSER_REPO: https://github.com/h2o/picohttpparser
PARSER_VERSION: f8d0513f1a7a111f2597d643b073935a8afaf9e5
context: ./images/h2o
depends_on:
- echo
x-props:
role: transducer
haproxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/haproxy/haproxy
APP_VERSION: 036ab62231003e7e7072986626597682725edff8
BACKEND: echo
CONFIG_FILE: haproxy.conf
context: ./images/haproxy
depends_on:
- echo
x-props:
role: transducer
haproxy_fcgi:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/haproxy/haproxy
APP_VERSION: 036ab62231003e7e7072986626597682725edff8
CONFIG_FILE: haproxy-fcgi.conf
context: ./images/haproxy
x-props:
role: origin
haproxy_invalid:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/haproxy/haproxy
APP_VERSION: 036ab62231003e7e7072986626597682725edff8
BACKEND: echo
CONFIG_FILE: haproxy-invalid.conf
context: ./images/haproxy
depends_on:
- echo
x-props:
role: transducer
hyper:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/hyperium/hyper
APP_VERSION: 67a4a498d8bbdce4e604bc578da4693fb048f83d
context: ./images/hyper
x-props:
role: origin
hypercorn:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/pgjones/hypercorn
APP_VERSION: 84d06b8cf47798d2df7722273341e720ec0ea102
context: ./images/hypercorn
volumes:
- /tmp/hypercorn:/tmp
x-props:
is-traced: true
role: origin
ktor:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/ktorio/ktor
APP_VERSION: bf0165e6d8481902784789a0d4241d7a67ef2c14
context: ./images/ktor
x-props:
role: origin
libevent:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/libevent/libevent
APP_VERSION: 628f39bb908a032bc12ec5361723b1592022186e
context: ./images/libevent
x-props:
role: origin
libmicrohttpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://git.gnunet.org/libmicrohttpd.git
APP_VERSION: a1085032dc631e387eb8e06b41a382e7dc6dd8eb
context: ./images/libmicrohttpd
x-props:
role: origin
libsoup:
build:
args:
APP_BRANCH: master
APP_REPO: https://gitlab.gnome.org/GNOME/libsoup.git
APP_VERSION: d1fefb44832d8acefc2be3beea141d2cb39c0fc6
context: ./images/libsoup
x-props:
role: origin
lighttpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/lighttpd/lighttpd1.4
APP_VERSION: 3bc0bc2f81f9d93c97fc7d732b3f124a5954f8e2
CONFIG_FILE: server.conf
context: ./images/lighttpd
volumes:
- /tmp/lighttpd:/tmp
x-props:
is-traced: true
role: origin
lighttpd_proxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/lighttpd/lighttpd1.4
APP_VERSION: 3bc0bc2f81f9d93c97fc7d732b3f124a5954f8e2
BACKEND: echo
CONFIG_FILE: proxy.conf
context: ./images/lighttpd
depends_on:
- echo
x-props:
role: transducer
mongoose:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/cesanta/mongoose
APP_VERSION: eb6a8afe8d44eec0f429d4e05e3b4eccefa5d426
SERVER_SOURCE: main.c
context: ./images/mongoose
volumes:
- /tmp/mongoose:/tmp
x-props:
is-traced: true
role: origin
netty:
build:
args:
APP_BRANCH: '4.1'
APP_REPO: https://github.com/netty/netty
APP_VERSION: a1187506e40396fc731892cd2a72a50d06d5deb3
context: ./images/netty
x-props:
role: origin
nghttpx:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/nghttp2/nghttp2
APP_VERSION: beb25a219445a10ac9e7a7dee28b96fcfb702e71
BACKEND: echo
context: ./images/nghttp2
depends_on:
- echo
x-props:
role: transducer
nginx:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/nginx/nginx
APP_VERSION: 00637cce366f17b78fe1ed5c1ef0e534143045f6
CONFIG_FILE: nginx.conf
context: ./images/nginx
volumes:
- /tmp/nginx:/tmp
x-props:
is-traced: true
role: origin
nginx_proxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/nginx/nginx
APP_VERSION: 00637cce366f17b78fe1ed5c1ef0e534143045f6
BACKEND: echo
CONFIG_FILE: nginx-proxy.conf
context: ./images/nginx
depends_on:
- echo
x-props:
role: transducer
node_stdlib:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/nodejs/node
APP_VERSION: a202666399cec4098aa0bd8e6f9fe743b0fd43fb
PARSER_BRANCH: main
PARSER_REPO: https://github.com/nodejs/llhttp
PARSER_VERSION: f9d9465ffa61d59e2c78c8c1333528edc152f04a
context: ./images/node_stdlib
x-props:
role: origin
openlitespeed:
build:
args:
APP_REPO: https://github.com/litespeedtech/openlitespeed
APP_BRANCH: v1.8.1
APP_VERSION: 1.8.2
CONFIG_FILE: server_config.conf
VHOST_CONFIG_FILE: server_vhost.conf
context: ./images/openlitespeed
x-props:
role: origin
version_frozen: true
openlitespeed_proxy:
build:
args:
APP_REPO: https://github.com/litespeedtech/openlitespeed
APP_BRANCH: v1.8.1
APP_VERSION: 1.8.2
BACKEND: echo
CONFIG_FILE: proxy_config.conf
VHOST_CONFIG_FILE: proxy_vhost.conf
context: ./images/openlitespeed
depends_on:
- echo
x-props:
role: transducer
version_frozen: true
openwrt_uhttpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://git.openwrt.org/project/uhttpd.git
APP_VERSION: 34a8a74dbdec3c0de38abc1b08f6a73c51263792
LIBUBOX_BRANCH: master
LIBUBOX_REPO: https://git.openwrt.org/project/libubox.git
LIBUBOX_VERSION: eb9bcb64185ac155c02cc1a604692c4b00368324
LIBUBUS_BRANCH: master
LIBUBUS_REPO: https://git.openwrt.org/project/ubus.git
LIBUBUS_VERSION: 65bb027054def3b94a977229fd6ad62ddd32345b
UCODE_BRANCH: master
UCODE_REPO: https://github.com/jow-/ucode
UCODE_VERSION: 26d7292934493ebdb848dc4b3dc9d984525be9e3
USTREAM_SSL_BRANCH: master
USTREAM_SSL_REPO: https://git.openwrt.org/project/ustream-ssl.git
USTREAM_SSL_VERSION: 99bd3d2b167ccdffb6de072d02c380cb37b23e33
context: ./images/openwrt_uhttpd
volumes:
- /tmp/openwrt_uhttpd:/tmp
x-props:
is-traced: true
role: origin
timeout: 0.2
php_stdlib:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/php/php-src
APP_VERSION: 201c691fab036b40f8b2ddcfd253fd21089ed799
context: ./images/php_stdlib
x-props:
role: origin
phusion_passenger:
build:
args:
APP_BRANCH: stable-6.0
APP_REPO: https://github.com/phusion/passenger
APP_VERSION: 3d86be005f05dbb6f54ed5fc6ae8370971c67f0a
context: ./images/phusion_passenger
x-props:
role: origin
pingora:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/cloudflare/pingora
APP_VERSION: e288bfe8f036d995d74367acef4b2fa0f04ecf26
BACKEND: echo
context: ./images/pingora
depends_on:
- echo
x-props:
role: transducer
pound:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/graygnuorg/pound
APP_VERSION: e900114e61c3459943d4b3f62aecca4ee63b8fa6
BACKEND: echo
context: ./images/pound
depends_on:
- echo
x-props:
role: transducer
protocol_http1:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/socketry/protocol-http1
APP_VERSION: 292c54e5f318bfde04bbd0286930c535800c1fb3
context: ./images/protocol_http1
x-props:
role: origin
timeout: 0.2
puma:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/puma/puma
APP_VERSION: 796d8c6af139a22e29e57e156c05c66ed3082634
context: ./images/puma
x-props:
role: origin
servicetalk:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/apple/servicetalk
APP_VERSION: 9e310ccd5bd5d8207340ef302b8ab08a4e9ee299
context: ./images/servicetalk
x-props:
role: origin
squid:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/squid-cache/squid
APP_VERSION: 5370d36199e577b6aa424658260aab08e32d9015
BACKEND: echo
context: ./images/squid
depends_on:
- echo
x-props:
role: transducer
tornado:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/tornadoweb/tornado
APP_VERSION: fe1e98c712b8d32f324f8cda313401d456a436a1
context: ./images/tornado
x-props:
role: origin
twisted:
build:
args:
APP_BRANCH: trunk
APP_REPO: https://github.com/twisted/twisted
APP_VERSION: f0afc5eb9850eda242beefb178dd481e28926f08
context: ./images/twisted
x-props:
role: origin
undertow:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/undertow-io/undertow
APP_VERSION: d42e47a622b723e132f7045a0833dc0da2bbde8f
context: ./images/undertow
x-props:
role: origin
unicorn:
build:
args:
APP_BRANCH: master
APP_REPO: https://yhbt.net/unicorn.git
APP_VERSION: e2b2f325fb9cc877496bbd4273fd4bf4fc84ec59
context: ./images/unicorn
x-props:
role: origin
uvicorn:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/encode/uvicorn
APP_VERSION: 47304d9ae76321f0f5f649ff4f73e09b17085933
context: ./images/uvicorn
volumes:
- /tmp/uvicorn:/tmp
x-props:
is-traced: true
role: origin
varnish:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/varnishcache/varnish-cache
APP_VERSION: 444d0bea46254526149f4f5daa4c179e642746a9
BACKEND: echo
context: ./images/varnish
depends_on:
- echo
x-props:
role: transducer
waitress:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/Pylons/waitress
APP_VERSION: 4584936eac5838b6d3b07e84a86874fa586ffe6e
context: ./images/waitress
volumes:
- /tmp/waitress:/tmp
x-props:
is-traced: true
role: origin
webrick:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/ruby/webrick
APP_VERSION: 0c600e169bd4ae267cb5eeb6197277c848323bbe
context: ./images/webrick
x-props:
role: origin