-
Notifications
You must be signed in to change notification settings - Fork 56
/
docker-compose.yaml
252 lines (252 loc) · 7.63 KB
/
docker-compose.yaml
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
version: "2"
services:
hello-c.alpine:
image: minimage:hello-c.alpine
build:
context: .
dockerfile: Dockerfile.hello-c.alpine
hello-c.alpine.alpine:
image: minimage:hello-c.alpine.alpine
build:
context: .
dockerfile: Dockerfile.hello-c.alpine.alpine
hello-c.alpine-static.scratch:
image: minimage:hello-c.alpine-static.scratch
build:
context: .
dockerfile: Dockerfile.hello-c.alpine-static.scratch
hello-c.gcc:
image: minimage:hello-c.gcc
build:
context: .
dockerfile: Dockerfile.hello-c.gcc
hello-c.gcc.alpine:
image: minimage:hello-c.gcc.alpine
build:
context: .
dockerfile: Dockerfile.hello-c.gcc.alpine
hello-c.gcc.scratch:
image: minimage:hello-c.gcc.scratch
build:
context: .
dockerfile: Dockerfile.hello-c.gcc.scratch
hello-c.gcc-static.alpine:
image: minimage:hello-c.gcc-static.alpine
build:
context: .
dockerfile: Dockerfile.hello-c.gcc-static.alpine
hello-c.gcc-static.scratch:
image: minimage:hello-c.gcc-static.scratch
build:
context: .
dockerfile: Dockerfile.hello-c.gcc-static.scratch
hello-c.gcc.ubuntu:
image: minimage:hello-c.gcc.ubuntu
build:
context: .
dockerfile: Dockerfile.hello-c.gcc.ubuntu
hello-go.golang:
image: minimage:hello-go.golang
build:
context: .
dockerfile: Dockerfile.hello-go.golang
hello-go.golang-alpine.alpine:
image: minimage:hello-go.golang-alpine.alpine
build:
context: .
dockerfile: Dockerfile.hello-go.golang-alpine.alpine
hello-go.golang-alpine.scratch:
image: minimage:hello-go.golang-alpine.scratch
build:
context: .
dockerfile: Dockerfile.hello-go.golang-alpine.scratch
hello-go.golang.scratch:
image: minimage:hello-go.golang.scratch
build:
context: .
dockerfile: Dockerfile.hello-go.golang.scratch
hello-go.golang.scratch-string:
image: minimage:hello-go.golang.scratch-string
build:
context: .
dockerfile: Dockerfile.hello-go.golang.scratch-string
hello-go.golang.ubuntu-workdir:
image: minimage:hello-go.golang.ubuntu-workdir
build:
context: .
dockerfile: Dockerfile.hello-go.golang.ubuntu-workdir
hello-java.amazoncorretto:
image: minimage:hello-java.amazoncorretto
build:
context: .
dockerfile: Dockerfile.hello-java.amazoncorretto
hello-java.eclipse-temurin.native-image.scratch:
image: minimage:hello-java.eclipse-temurin.native-image.scratch
build:
context: .
dockerfile: Dockerfile.hello-java.eclipse-temurin.native-image.scratch
hello-java.openjdk:
image: minimage:hello-java.openjdk
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk
hello-java.openjdk-11.openjdk-11-jre:
image: minimage:hello-java.openjdk-11.openjdk-11-jre
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk-11.openjdk-11-jre
hello-java.openjdk-15-alpine-jlink.alpine:
image: minimage:hello-java.openjdk-15-alpine-jlink.alpine
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk-15-alpine-jlink.alpine
hello-java.openjdk-15-jlink.ubuntu:
image: minimage:hello-java.openjdk-15-jlink.ubuntu
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk-15-jlink.ubuntu
hello-java.openjdk-8.openjdk-8-jre-alpine:
image: minimage:hello-java.openjdk-8.openjdk-8-jre-alpine
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk-8.openjdk-8-jre-alpine
hello-java.openjdk-alpine:
image: minimage:hello-java.openjdk-alpine
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk-alpine
hello-java.openjdk.openjdk-8-jre-alpine:
image: minimage:hello-java.openjdk.openjdk-8-jre-alpine
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk.openjdk-8-jre-alpine
hello-java.openjdk.openjdk-jre:
image: minimage:hello-java.openjdk.openjdk-jre
build:
context: .
dockerfile: Dockerfile.hello-java.openjdk.openjdk-jre
hello-py.python:
image: minimage:hello-py.python
build:
context: .
dockerfile: Dockerfile.hello-py.python
hello-py.python-alpine:
image: minimage:hello-py.python-alpine
build:
context: .
dockerfile: Dockerfile.hello-py.python-alpine
hello-rust.rust:
image: minimage:hello-rust.rust
build:
context: .
dockerfile: Dockerfile.hello-rust.rust
hello-rust.rust-alpine:
image: minimage:hello-rust.rust-alpine
build:
context: .
dockerfile: Dockerfile.hello-rust.rust-alpine
hello-rust.rust.alpine:
image: minimage:hello-rust.rust.alpine
build:
context: .
dockerfile: Dockerfile.hello-rust.rust.alpine
hello-rust.rust-alpine.alpine:
image: minimage:hello-rust.rust-alpine.alpine
build:
context: .
dockerfile: Dockerfile.hello-rust.rust-alpine.alpine
hello-rust.rust.busybox-glibc:
image: minimage:hello-rust.rust.busybox-glibc
build:
context: .
dockerfile: Dockerfile.hello-rust.rust.busybox-glibc
hello-rust.rust.debian:
image: minimage:hello-rust.rust.debian
build:
context: .
dockerfile: Dockerfile.hello-rust.rust.debian
hello-rust.rust.scratch:
image: minimage:hello-rust.rust.scratch
build:
context: .
dockerfile: Dockerfile.hello-rust.rust.scratch
pyds.alpine:
image: minimage:pyds.alpine
build:
context: .
dockerfile: Dockerfile.pyds.alpine
pyds.alpine.alpine:
image: minimage:pyds.alpine.alpine
build:
context: .
dockerfile: Dockerfile.pyds.alpine.alpine
pyds.python:
image: minimage:pyds.python
build:
context: .
dockerfile: Dockerfile.pyds.python
pyds.python-slim:
image: minimage:pyds.python-slim
build:
context: .
dockerfile: Dockerfile.pyds.python-slim
pyyaml.python:
image: minimage:pyyaml.python
build:
context: .
dockerfile: Dockerfile.pyyaml.python
pyyaml.python-alpine:
image: minimage:pyyaml.python-alpine
build:
context: .
dockerfile: Dockerfile.pyyaml.python-alpine
pyyaml.python-alpine.python-alpine:
image: minimage:pyyaml.python-alpine.python-alpine
build:
context: .
dockerfile: Dockerfile.pyyaml.python-alpine.python-alpine
pyyaml.python-slim:
image: minimage:pyyaml.python-slim
build:
context: .
dockerfile: Dockerfile.pyyaml.python-slim
whatsmyip.golang:
image: minimage:whatsmyip.golang
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang
whatsmyip.golang.alpine:
image: minimage:whatsmyip.golang.alpine
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang.alpine
whatsmyip.golang-alpine.alpine:
image: minimage:whatsmyip.golang-alpine.alpine
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang-alpine.alpine
whatsmyip.golang.busybox:
image: minimage:whatsmyip.golang.busybox
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang.busybox
whatsmyip.golang.busybox-glibc:
image: minimage:whatsmyip.golang.busybox-glibc
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang.busybox-glibc
whatsmyip.golang-nocgo.scratch:
image: minimage:whatsmyip.golang-nocgo.scratch
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang-nocgo.scratch
whatsmyip.golang.scratch:
image: minimage:whatsmyip.golang.scratch
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang.scratch
whatsmyip.golang.ubuntu:
image: minimage:whatsmyip.golang.ubuntu
build:
context: .
dockerfile: Dockerfile.whatsmyip.golang.ubuntu