-
Notifications
You must be signed in to change notification settings - Fork 65
/
docker-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:
openjdk_stdlib:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/openjdk/jdk
APP_VERSION: bd0fde71d9113bad902e71b61f0ca44c650809ef
context: ./images/openjdk_stdlib
depends_on:
- http-garden-soil
x-props:
role: origin
aiohttp:
build:
args:
APP_BRANCH: master
APP_REPO: https://github.com/aio-libs/aiohttp
APP_VERSION: 2a55afeed7e769877d9f6f1eb7aab7ff595e1313
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: 4a9cd1fccf8e79eda2132d65166af6e87e4f5fe9
APR_BRANCH: trunk
APR_REPO: https://github.com/apache/apr
APR_VERSION: d131b4e1be4fc45e9f092cff90d7c87baa251e2b
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: 4a9cd1fccf8e79eda2132d65166af6e87e4f5fe9
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
- http-garden-soil
x-props:
role: transducer
apache_tomcat:
build:
args:
APP_BRANCH: main
APP_REPO: https://github.com/apache/tomcat
APP_VERSION: fdec436da281b5c30321bd59be0ff1e8aaef9184
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: addbe0b3fbb29caf417832706966a33b85d07507
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: 9b5f76f8337d54c8f6a0920df2232ac74eff613b
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: aeb9b65aa26444529e4adc7d6e5b0d3dd9889ec2
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: b1f0731cbf9ba9619bd7b04a0a6703a8512f288c
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: 818bd0ee98bfe526b370617215d9a2e4a5f5edb2
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: 52e1e93787f3433c49d7c771845c49457cee070f
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: ce283fb97c2e0c4801e68fd6c362a81a8a5c74b5
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: 2b794ed86cb1b718bc212ee90fecbb8f3b28a744
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: 2b794ed86cb1b718bc212ee90fecbb8f3b28a744
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: ebcd7f47d89525fd93252a8ba99ca732abda0fdb
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: ebcd7f47d89525fd93252a8ba99ca732abda0fdb
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: e148dfd35d0b4d5a1e2b7f326f5e3b9dcec9020f
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: e148dfd35d0b4d5a1e2b7f326f5e3b9dcec9020f
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: e148dfd35d0b4d5a1e2b7f326f5e3b9dcec9020f
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: aeb9b65aa26444529e4adc7d6e5b0d3dd9889ec2
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: 30f2961e89eb306780d856e6e2c1ee10ffbbafd2
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: 29245c83d56304e7805ac7be7e5816b0d5be2551
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: c9083869ec2a3037e6df4bd86b45c419ba295f8e
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: 2bf81d4105c68ea1bef6c146fd7911f7ebbb024d
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: 2bf81d4105c68ea1bef6c146fd7911f7ebbb024d
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: f95283e3415c3348417c8d77b0450b43d3dd832c
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: c7de17a7f385a8a2156ddc9e74c7a85a6651a034
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: e3a9b6ad08a86e799a3d77da3f2fc507d3c9699e
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: e3a9b6ad08a86e799a3d77da3f2fc507d3c9699e
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: a556b9dbc0d568f20ed9322450b6206ba70d8a13
context: ./images/openbsd_httpd
depends_on:
- http-garden-soil
x-props:
role: origin
openlitespeed:
build:
args:
APP_BRANCH: v1.8.2.1
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
depends_on:
- http-garden-soil
x-props:
role: origin
version_frozen: true
openlitespeed_proxy:
build:
args:
APP_BRANCH: v1.8.2.1
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
- 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: 252a9b0c1774790fb9c25735d5a09c27dba895db
UCODE_BRANCH: master
UCODE_REPO: https://github.com/jow-/ucode
UCODE_VERSION: ef7033878f878c9a4c51ab73353db7b93a4f99e3
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: 65524e5d53037fd1059d92c7c4b8a211cec60d97
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: 42e11c475eac26d50ae5e59ec98167100a188184
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: 181117673a00addf61531541f5b6c8bd9799ae86
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: db96687509548e54f28ff3ebcb156bf4c70d4e4d
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: 339f9cd4a15f643377d8d4b393b83d2985341b9c
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: ebfba66659e9cc23ec02c97d6277bd018dbe6548
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: cf916f35e55bb591b8544e77455bb39c94b4b2a5
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: 16cafa1f068e27e5c6ea62503bb8b03887b3952a
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: 0a39ba8b6ac0beb48a3244098cfa72ce1f59f215
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: 067779ab7cdd92da7a2de8a51623760dd36f2db5
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: 6ae61c6af88d2a8341922ccd0de98926e8349543
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: 7983c1ae9c2276b94cd85217f7aa58bb248847c4
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: 772d7385dbe2cfa8b70d98af0b5da1236727e58b
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: c7712df6d318cef80d0aa631232c17467984bdf6
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