-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathdocker-compose.yml
791 lines (791 loc) · 20.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
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
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
services:
aiohttp:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/aio-libs/aiohttp
APP_VERSION: 892a4fc91f8952c451bf094d41d88b8c66546e26
context: ./images/aiohttp
depends_on:
- http-garden-python-soil
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: 0ba38c2527e31b13e96aafc41c60bf9aa7a16383
APR_BRANCH: trunk
APR_REPO: https://github.com/apache/apr
APR_VERSION: d6bb3f97d71945f127934f12271d1aa81b167739
CONFIG_FILE: server.conf
context: ./images/apache_httpd
depends_on:
- http-garden-soil
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: 0ba38c2527e31b13e96aafc41c60bf9aa7a16383
APR_BRANCH: trunk
APR_REPO: https://github.com/apache/apr
APR_VERSION: d6bb3f97d71945f127934f12271d1aa81b167739
BACKEND: echo
CONFIG_FILE: proxy.conf
context: ./images/apache_httpd
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
apache_tomcat:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/apache/tomcat
APP_VERSION: 4cddb2acf1e954fcdcf27e24ab54e46d0cdf7bc0
context: ./images/apache_tomcat
depends_on:
- http-garden-soil
x-props:
role: origin
apache_trafficserver:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/apache/trafficserver
APP_VERSION: 9a11e654369d0ce818bd27cc7cc365c5f2c97f0c
BACKEND: echo
CACHE_CONFIG: cache.config
RECORDS_YAML: records.yaml
REMAP_CONFIG: remap.config
context: ./images/apache_trafficserver
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
busybox_httpd_proxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://git.busybox.net/busybox/
APP_VERSION: 14f57f5357cb674b88e7cdaff6267bf9d84c6b80
BACKEND: echo
CONFIG_FILE: httpd_proxy.conf
context: ./images/busybox_httpd
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
cheroot:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/cherrypy/cheroot
APP_VERSION: 088647e1df999e5739e78fdf06d1f29f64afa693
context: ./images/cheroot
depends_on:
- http-garden-python-soil
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: 60a1f00618a4fa135969f8b6da36f6849e2fd086
context: ./images/cpp_httplib
depends_on:
- http-garden-soil
x-props:
role: origin
cpython_stdlib:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/python/cpython
APP_VERSION: 9ba281d871c4df3a3ac4cb7896d24ba0d42751a3
context: ./images/cpython_stdlib
depends_on:
- http-garden-python-soil
x-props:
role: origin
dart_stdlib:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/dart-lang/sdk
APP_VERSION: 3f302232e4913310ee37644077c9fc61d88881f8
context: ./images/dart_stdlib
depends_on:
- http-garden-soil
x-props:
role: origin
echo:
build:
context: ./images/echo
depends_on:
- http-garden-python-soil
eclipse_grizzly:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/eclipse-ee4j/grizzly
APP_VERSION: 4316ca1adbaa00341d142d8ae571932294511a96
context: ./images/eclipse_grizzly
depends_on:
- http-garden-soil
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: 413a15d6d9baddcb7d4d83e245ebcc1a0eeacfa1
context: ./images/eclipse_jetty
depends_on:
- http-garden-soil
x-props:
role: origin
envoy:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/envoyproxy/envoy
APP_VERSION: f683f26a6bed9dad7bcd917f9236fc454769d80d
BACKEND: echo
context: ./images/envoy
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
fasthttp:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/valyala/fasthttp
APP_VERSION: c908d9c1eeb4d725dabaf83b351b845c19163a04
context: ./images/fasthttp
depends_on:
- http-garden-soil
x-props:
role: origin
go_stdlib:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/golang/go
APP_SOURCE: app.go
APP_VERSION: ce7ea0a6a529ce91327900e29afc3abd620030b4
context: ./images/go_stdlib
depends_on:
- http-garden-soil
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: ce7ea0a6a529ce91327900e29afc3abd620030b4
BACKEND: echo
context: ./images/go_stdlib
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
gunicorn:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/benoitc/gunicorn
APP_VERSION: bacbf8aa5152b94e44aa5d2a94aeaf0318a85248
context: ./images/gunicorn
depends_on:
- http-garden-python-soil
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: 26b116e9536be8cf07036185e3edf9d721c9bac2
CONFIG_FILE: h2o.conf
PARSER_BRANCH: master
PARSER_REPO: https://github.com/h2o/picohttpparser
PARSER_VERSION: f8d0513f1a7a111f2597d643b073935a8afaf9e5
context: ./images/h2o
depends_on:
- http-garden-soil
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: 26b116e9536be8cf07036185e3edf9d721c9bac2
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
- http-garden-soil
x-props:
role: transducer
haproxy:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/haproxy/haproxy
APP_VERSION: 0a28b1ea0c674f7bcc7ad386abdcf963f9176475
BACKEND: echo
CONFIG_FILE: haproxy.conf
context: ./images/haproxy
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
haproxy_fcgi:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/haproxy/haproxy
APP_VERSION: 0a28b1ea0c674f7bcc7ad386abdcf963f9176475
CONFIG_FILE: haproxy-fcgi.conf
context: ./images/haproxy
depends_on:
- http-garden-soil
x-props:
role: origin
haproxy_invalid:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/haproxy/haproxy
APP_VERSION: 0a28b1ea0c674f7bcc7ad386abdcf963f9176475
BACKEND: echo
CONFIG_FILE: haproxy-invalid.conf
context: ./images/haproxy
depends_on:
- http-garden-soil
- echo
x-props:
role: transducer
http-garden-python-soil:
build:
args:
CPYTHON_BRANCH: main
CPYTHON_REPO: https://github.com/python/cpython
CPYTHON_VERSION: 9ba281d871c4df3a3ac4cb7896d24ba0d42751a3
PYTHON_AFL_BRANCH: master
PYTHON_AFL_REPO: https://github.com/jwilk/python-afl
PYTHON_AFL_VERSION: fb449b4d9eb12ee1f43b6fac607079aab917643c
context: ./images/http-garden-python-soil
depends_on:
- http-garden-soil
image: http-garden-python-soil
http-garden-soil:
build:
args:
AFLPLUSPLUS_BRANCH: stable
AFLPLUSPLUS_REPO: https://github.com/kenballus/AFLplusplus
AFLPLUSPLUS_VERSION: a19327d7cdb5ba80875ff33ff4e58f38ad8dd5df
context: ./images/http-garden-soil
image: http-garden-soil
hyper:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/hyperium/hyper
APP_VERSION: 621d8e4d7788bfd2d62d15d40a73efae7f9a0bf0
context: ./images/hyper
depends_on:
- http-garden-soil
x-props:
role: origin
hypercorn:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/pgjones/hypercorn
APP_VERSION: 84d06b8cf47798d2df7722273341e720ec0ea102
context: ./images/hypercorn
depends_on:
- http-garden-python-soil
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: 747fef9366c02e0112c2130dcb95eaabb5fef7ee
context: ./images/ktor
depends_on:
- http-garden-soil
x-props:
role: origin
libevent:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/libevent/libevent
APP_VERSION: 9a6a799e7002aae09d5e7cb244bdb913eed75a04
context: ./images/libevent
depends_on:
- http-garden-soil
x-props:
role: origin
libmicrohttpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://git.gnunet.org/libmicrohttpd.git
APP_VERSION: 5e40455beae130dd0dd239a7a2447b88496c3be8
context: ./images/libmicrohttpd
depends_on:
- http-garden-soil
x-props:
role: origin
libsoup:
build:
args:
APP_BRANCH: master
APP_REPO: https://gitlab.gnome.org/GNOME/libsoup.git
APP_VERSION: afd77168a958b353d7c097ccd933afde1366d394
context: ./images/libsoup
depends_on:
- http-garden-soil
x-props:
role: origin
lighttpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/lighttpd/lighttpd1.4
APP_VERSION: ef0b224b9fc22acfcdc88d7dfb38879168c9b964
CONFIG_FILE: server.conf
context: ./images/lighttpd
depends_on:
- http-garden-soil
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: ef0b224b9fc22acfcdc88d7dfb38879168c9b964
BACKEND: echo
CONFIG_FILE: proxy.conf
context: ./images/lighttpd
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
mongoose:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/cesanta/mongoose
APP_VERSION: 4c6745670c444b3db8d808f6ebdadbf4f9fa51c0
SERVER_SOURCE: main.c
context: ./images/mongoose
depends_on:
- http-garden-soil
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: 1cfd3a62ca8633cc6d1729222214c64c5b50fd89
context: ./images/netty
depends_on:
- http-garden-soil
x-props:
role: origin
nginx:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/nginx/nginx
APP_VERSION: 04914cfbcbab347e13927b5da4b87e3846038563
CONFIG_FILE: nginx.conf
context: ./images/nginx
depends_on:
- http-garden-soil
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: 04914cfbcbab347e13927b5da4b87e3846038563
BACKEND: echo
CONFIG_FILE: nginx-proxy.conf
context: ./images/nginx
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
node_stdlib:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/nodejs/node
APP_VERSION: 60e9c6f441c6e43b7977eb0f9f669d0c3900cabf
PARSER_BRANCH: main
PARSER_REPO: https://github.com/nodejs/llhttp
PARSER_VERSION: f9d9465ffa61d59e2c78c8c1333528edc152f04a
context: ./images/node_stdlib
depends_on:
- http-garden-soil
x-props:
role: origin
version_frozen: true
openbsd_httpd:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/kenballus/obhttpd-linux
APP_VERSION: 07dff47ad8ad99f1d12125bae8851ef6ed29957e
OPENBSD_SRC_BRANCH: master
OPENBSD_SRC_REPO: https://github.com/openbsd/src
OPENBSD_SRC_VERSION: 5d1d4693fa032bf88cccf287de0ffab763a06279
context: ./images/openbsd_httpd
depends_on:
- http-garden-soil
x-props:
role: origin
openjdk_stdlib:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/openjdk/jdk
APP_VERSION: fcd5ebc7e8964c7936c0eede031cb6193621f5fb
context: ./images/openjdk_stdlib
depends_on:
- http-garden-soil
x-props:
role: origin
openlitespeed:
build:
args:
APP_BRANCH: v1.8.3
APP_REPO: https://github.com/litespeedtech/openlitespeed
APP_VERSION: 1.8.3
CONFIG_FILE: server_config.conf
VHOST_CONFIG_FILE: server_vhost.conf
context: ./images/openlitespeed
depends_on:
- http-garden-soil
x-props:
role: origin
version_frozen: true
openlitespeed_proxy:
build:
args:
APP_BRANCH: v1.8.3
APP_REPO: https://github.com/litespeedtech/openlitespeed
APP_VERSION: 1.8.3
BACKEND: echo
CONFIG_FILE: proxy_config.conf
VHOST_CONFIG_FILE: proxy_vhost.conf
context: ./images/openlitespeed
depends_on:
- echo
- http-garden-soil
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: 3868f47c8f6c6570e62a3cdf8a7f26ffb1a67e6a
LIBUBUS_BRANCH: master
LIBUBUS_REPO: https://git.openwrt.org/project/ubus.git
LIBUBUS_VERSION: afa57cce0aff82f4a7a0e509d4387ebc23dd3be7
UCODE_BRANCH: master
UCODE_REPO: https://github.com/jow-/ucode
UCODE_VERSION: 5b74722408cbfa545396b259b81c3d686fbb9d3d
USTREAM_SSL_BRANCH: master
USTREAM_SSL_REPO: https://git.openwrt.org/project/ustream-ssl.git
USTREAM_SSL_VERSION: 99bd3d2b167ccdffb6de072d02c380cb37b23e33
context: ./images/openwrt_uhttpd
depends_on:
- http-garden-soil
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: 16c9652f2729325dbd31c1d92578e2d41d50ef0c
context: ./images/php_stdlib
depends_on:
- http-garden-soil
x-props:
role: origin
pingora:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/cloudflare/pingora
APP_VERSION: f697eee0991e13d00a67f3ee99288a058cdc5559
BACKEND: echo
context: ./images/pingora
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
pound:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/graygnuorg/pound
APP_VERSION: 207e7b070bf66c6da467a8bce82741bce10ca0fc
BACKEND: echo
context: ./images/pound
depends_on:
- http-garden-soil
- echo
x-props:
role: transducer
protocol_http1:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/socketry/protocol-http1
APP_VERSION: 0b176f2ff05f7547d46a9be837c76e890ec1a0ad
context: ./images/protocol_http1
depends_on:
- http-garden-soil
x-props:
role: origin
timeout: 0.2
puma:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/puma/puma
APP_VERSION: 125070c89d7d889238a349b48adbd287ea3767b4
context: ./images/puma
depends_on:
- http-garden-soil
x-props:
role: origin
servicetalk:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/apple/servicetalk
APP_VERSION: a7e83b4ccdd2512e3cfdf14d58f369786e2c2459
context: ./images/servicetalk
depends_on:
- http-garden-soil
x-props:
role: origin
spring_cloud_gateway:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/spring-cloud/spring-cloud-gateway
APP_VERSION: f76397df192e9ab1ff1735edd2f181d1cb308ca8
BACKEND: echo
context: ./images/spring_cloud_gateway
depends_on:
- echo
- http-garden-soil
x-props:
port: 8080
role: transducer
squid:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/squid-cache/squid
APP_VERSION: 53ed1a918f0d75ccef6fa0b7d988225ec8b2015e
BACKEND: echo
context: ./images/squid
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
tornado:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/tornadoweb/tornado
APP_VERSION: 73a87a546229625a2c801847b182f447154c157d
context: ./images/tornado
depends_on:
- http-garden-python-soil
x-props:
role: origin
twisted:
build:
args:
APP_BRANCH: trunk
APP_REPO: https://github.com/twisted/twisted
APP_VERSION: 6baa16d53bd3229a8151cf5c296a7e4ec40fd04a
context: ./images/twisted
depends_on:
- http-garden-python-soil
x-props:
role: origin
undertow:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/undertow-io/undertow
APP_VERSION: 85cb914965b24bcd3e3bd6075597ac1d031fa94e
context: ./images/undertow
depends_on:
- http-garden-soil
x-props:
role: origin
uvicorn:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/encode/uvicorn
APP_VERSION: 36957371b14f8124cd46d76df164d9110c377140
context: ./images/uvicorn
depends_on:
- http-garden-python-soil
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: f9820104174c9f532b9f76745dedd90a5d5e136f
BACKEND: echo
context: ./images/varnish
depends_on:
- echo
- http-garden-soil
x-props:
role: transducer
waitress:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/Pylons/waitress
APP_VERSION: fc592e804a1aed87654c1ad21337dad86582c71f
context: ./images/waitress
depends_on:
- http-garden-python-soil
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: b0866430dadfa50ce9aa1f7dbdcdab10308691c3
context: ./images/webrick
depends_on:
- http-garden-soil
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
depends_on:
- http-garden-soil
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
- http-garden-soil
x-props:
role: transducer