-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
231 lines (229 loc) · 4.57 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
version: '3.8'
x-round: 1
x-shared: &shared
tty: true
volumes:
- .:/src
working_dir: /src
build:
context: .
#pid: "host"
services:
base:
<<: *shared
image: jit-benchmarks:base
build:
dockerfile: docker/base
ruby2:
<<: *shared
image: jit-benchmarks:ruby2
build:
dockerfile: docker/ruby2
args:
# https://www.ruby-lang.org/en/downloads/
version: 2.7.7
major_version: 2.7
depends_on:
- base
ruby3:
<<: *shared
image: jit-benchmarks:ruby3
build:
dockerfile: docker/ruby3
args:
# https://www.ruby-lang.org/en/downloads/
major_version: 3.2
version: 3.2.1
depends_on:
- base
java:
<<: *shared
image: jit-benchmarks:java
build:
dockerfile: docker/java
args:
version: 19
depends_on:
- base
graalvm:
<<: *shared
image: jit-benchmarks:graalvm
build:
dockerfile: docker/graalvm
args:
# https://github.com/graalvm/graalvm-ce-builds/releases
version: 22.3.1
java_version: 19
depends_on:
- java
truffleruby:
<<: *shared
image: jit-benchmarks:truffleruby
build:
dockerfile: docker/truffleruby
depends_on:
- graalvm
graalpython:
<<: *shared
image: jit-benchmarks:graalpython
build:
dockerfile: docker/graalpython
depends_on:
- graalvm
graalnode:
<<: *shared
image: jit-benchmarks:graalnode
build:
dockerfile: docker/graalnode
depends_on:
- graalvm
crystal:
<<: *shared
image: jit-benchmarks:crystal
build:
dockerfile: docker/crystal
args:
# https://github.com/crystal-lang/crystal/releases
version: 1.7.2
depends_on:
- base
jruby:
<<: *shared
image: jit-benchmarks:jruby
build:
dockerfile: docker/jruby
args:
# https://www.jruby.org/download
version: 9.4.1.0
depends_on:
- java
pypy2:
<<: *shared
image: jit-benchmarks:pypy2
build:
dockerfile: docker/pypy2
args:
# https://www.pypy.org/download.html
python: 2.7
version: 7.3.11
depends_on:
- base
pypy3:
<<: *shared
image: jit-benchmarks:pypy3
build:
dockerfile: docker/pypy3
args:
# https://www.pypy.org/download.html
python: 3.9
version: 7.3.11
depends_on:
- base
topaz:
<<: *shared
image: jit-benchmarks:topaz
build:
dockerfile: docker/topaz
depends_on:
- base
rbx:
<<: *shared
image: jit-benchmarks:rbx
build:
dockerfile: docker/rbx
depends_on:
- base
jython:
<<: *shared
image: jit-benchmarks:jython
build:
dockerfile: docker/jython
args:
# https://www.jython.org/download
version: 2.7.3
depends_on:
- java
python2:
<<: *shared
image: jit-benchmarks:python2
build:
dockerfile: docker/python2
depends_on:
- base
python3:
<<: *shared
image: jit-benchmarks:python3
build:
dockerfile: docker/python3
depends_on:
- base
mypy:
<<: *shared
image: jit-benchmarks:mypy
build:
dockerfile: docker/mypy
depends_on:
- python3
cython3:
<<: *shared
image: jit-benchmarks:cython3
build:
dockerfile: docker/cython3
depends_on:
- python3
php8:
<<: *shared
image: jit-benchmarks:php8
build:
dockerfile: docker/php8
args:
# https://www.php.net/downloads.php
version: 8.2.3
depends_on:
- base
nodejs:
<<: *shared
image: jit-benchmarks:nodejs
build:
dockerfile: docker/nodejs
args:
# https://nodejs.org/en/download/current/
version: 19.7.0
depends_on:
- base
lua:
<<: *shared
image: jit-benchmarks:lua
build:
dockerfile: docker/lua
args:
# https://www.lua.org/download.html
version: 5.4.4
rocks_version: 3.9.2
depends_on:
- base
luajit:
<<: *shared
image: jit-benchmarks:luajit
build:
dockerfile: docker/luajit
args:
# https://github.com/openresty/luajit2/tags
version: 2.1-20230119
rocks_version: 3.9.2
depends_on:
- base
nuitka:
<<: *shared
image: jit-benchmarks:nuitka
build:
dockerfile: docker/nuitka
depends_on:
- python3
codon:
<<: *shared
image: jit-benchmarks:codon
build:
dockerfile: docker/codon
depends_on:
- python3