-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathdocker-compose.yml
612 lines (612 loc) · 16.4 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
604
605
606
607
608
609
610
611
612
services:
aiohttp:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/aio-libs/aiohttp
APP_VERSION: 1fa237ffc9e7aa70cbabb68ab64d6fe03255cbc0
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: 9ab669e30ed2ed238f79587ffb877f9f679d715d
APR_BRANCH: trunk
APR_REPO: https://github.com/apache/apr
APR_VERSION: d131b4e1be4fc45e9f092cff90d7c87baa251e2b
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: 9ab669e30ed2ed238f79587ffb877f9f679d715d
APR_BRANCH: trunk
APR_REPO: https://github.com/apache/apr
APR_VERSION: d131b4e1be4fc45e9f092cff90d7c87baa251e2b
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: 1172ed5d6a1c23a07e9c45678bfb28c20279d38f
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: 29c3e31c6020906adc212030ff37a05860cbac6d
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: a9c1fe465a8642a16cb290d9667d4c624d80b306
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: 4f5b003e760b1fd62c5c22eff09f4c5934bfdfc5
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: ad36a981bc5dc864d1877ed2042786a255d0b969
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: a8aec30707e3abdfd3df19ad7a9d87d5a7eb6193
context: ./images/eclipse_jetty
x-props:
role: origin
fasthttp:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/valyala/fasthttp
APP_VERSION: 7b74fc98457ce08b2d8a445660c1f9e55eca782f
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: caee788a48f19814bd778c1bd2422cb6f60ad810
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: caee788a48f19814bd778c1bd2422cb6f60ad810
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: bacbf8aa5152b94e44aa5d2a94aeaf0318a85248
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: f7a0e1d6e07589f6456e3ffa52f6b17908e6b113
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: f7a0e1d6e07589f6456e3ffa52f6b17908e6b113
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: 7868dc9c45aeb29774baac98711f563755b610d6
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: 7868dc9c45aeb29774baac98711f563755b610d6
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: 7868dc9c45aeb29774baac98711f563755b610d6
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: 12717d16594debd8f2b1e3e169cc9b4700ee25b3
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: 561cd8d302650a7dab06bd56a055446e8ffced70
context: ./images/ktor
x-props:
role: origin
libevent:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/libevent/libevent
APP_VERSION: a2ed23b176634a8bc2e0385d79aa1f3a8684e5c5
context: ./images/libevent
x-props:
role: origin
libmicrohttpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://git.gnunet.org/libmicrohttpd.git
APP_VERSION: 5e40455beae130dd0dd239a7a2447b88496c3be8
context: ./images/libmicrohttpd
x-props:
role: origin
libsoup:
build:
args:
APP_BRANCH: master
APP_REPO: https://gitlab.gnome.org/GNOME/libsoup.git
APP_VERSION: 8b46a93bc1cbadb22dcdbb6844d9616723376535
context: ./images/libsoup
x-props:
role: origin
lighttpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/lighttpd/lighttpd1.4
APP_VERSION: fd6b4bb3a3e546824320103c2b2382fe9024873c
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: fd6b4bb3a3e546824320103c2b2382fe9024873c
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: 7fffe0abaa6a71a57a7f5dad82d4ef5083ef4352
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: 2eb7fcef56ae82ab5ca5e1c9e03901bf94df204b
context: ./images/netty
x-props:
role: origin
nginx:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/nginx/nginx
APP_VERSION: e28ef42b97d5352e514f019cd3b9a6c07a87c580
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: e28ef42b97d5352e514f019cd3b9a6c07a87c580
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: fe1dd26398e1887b96b2dc51ab59371ad4d6bc20
PARSER_BRANCH: main
PARSER_REPO: https://github.com/nodejs/llhttp
PARSER_VERSION: f9d9465ffa61d59e2c78c8c1333528edc152f04a
context: ./images/node_stdlib
x-props:
role: origin
version_frozen: true
openlitespeed:
build:
args:
APP_BRANCH: v1.8.2
APP_REPO: https://github.com/litespeedtech/openlitespeed
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_BRANCH: v1.8.2
APP_REPO: https://github.com/litespeedtech/openlitespeed
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: 252a9b0c1774790fb9c25735d5a09c27dba895db
UCODE_BRANCH: master
UCODE_REPO: https://github.com/jow-/ucode
UCODE_VERSION: 1323a272b6f0dff9445c111c0e47e5633288a39d
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: fdd3839d80625fcc2b4669507660b00c0b035a36
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: 2a6c035162f4a894426f9efc13c158ef47a858e2
context: ./images/phusion_passenger
x-props:
role: origin
pingora:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/cloudflare/pingora
APP_VERSION: e309436319ed5cbc3aaf53221070a1fd070b8bcf
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: 181117673a00addf61531541f5b6c8bd9799ae86
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: db96687509548e54f28ff3ebcb156bf4c70d4e4d
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: 2c9aafef0ea42058bf3bb03f53805680fffecc60
context: ./images/puma
x-props:
role: origin
servicetalk:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/apple/servicetalk
APP_VERSION: 673e4d945035acf5f4b03c86daa34e00b883a8f0
context: ./images/servicetalk
x-props:
role: origin
squid:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/squid-cache/squid
APP_VERSION: 6bd74111a80de08270dc5886e6ad6bcd7d5e08b4
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: f62afc31bc8908a2c9d0c21f74bc1447781e4782
context: ./images/tornado
x-props:
role: origin
twisted:
build:
args:
APP_BRANCH: trunk
APP_REPO: https://github.com/twisted/twisted
APP_VERSION: 0e4ee19218e2bf02de8324e909626afb99e8829e
context: ./images/twisted
x-props:
role: origin
undertow:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/undertow-io/undertow
APP_VERSION: a4720e31097e51d1dc72596ccbb9e0e7c90e3bf3
context: ./images/undertow
x-props:
role: origin
uvicorn:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/encode/uvicorn
APP_VERSION: b7241e1c64b8e10f56191d2836fa386ad3e56681
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: 027c91f2166e260d2922e933e27c01cff81a5228
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: fc592e804a1aed87654c1ad21337dad86582c71f
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: 74303648c8f900a7bb7cdf8dec4337051dafb34a
context: ./images/webrick
x-props:
role: origin
yahns:
build:
args:
APP_BRANCH: master
APP_REPO: https://yhbt.net/yahns.git
APP_VERSION: 77b03460154eeb14decb40126580fc66f58549b0
CONFIG_FILE: server.ru
PARSER_BRANCH: master
PARSER_REPO: https://yhbt.net/unicorn.git
PARSER_VERSION: 1370f52bb0e63575ebaf11b0700751f792cd0e96
context: ./images/yahns
x-props:
role: origin
yahns_proxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://yhbt.net/yahns.git
APP_VERSION: 77b03460154eeb14decb40126580fc66f58549b0
BACKEND: echo
CONFIG_FILE: proxy.ru
PARSER_BRANCH: master
PARSER_REPO: https://yhbt.net/unicorn.git
PARSER_VERSION: 1370f52bb0e63575ebaf11b0700751f792cd0e96
context: ./images/yahns
depends_on:
- echo
x-props:
role: origin