forked from paketo-buildpacks/occam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker.go
562 lines (456 loc) · 13 KB
/
docker.go
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
package occam
import (
"bytes"
"fmt"
"io"
"sort"
"strings"
"github.com/docker/docker/client"
name "github.com/google/go-containerregistry/pkg/name"
v1 "github.com/google/go-containerregistry/pkg/v1"
daemon "github.com/google/go-containerregistry/pkg/v1/daemon"
"github.com/paketo-buildpacks/packit/v2/pexec"
)
//go:generate faux --interface DockerDaemonClient --output fakes/daemon_client.go
type DockerDaemonClient interface {
daemon.Client
}
type Docker struct {
Image struct {
ExportToOCI DockerImageOCI
Inspect DockerImageInspect
Remove DockerImageRemove
Tag DockerImageTag
}
Container struct {
Copy DockerContainerCopy
Exec DockerContainerExec
Inspect DockerContainerInspect
Logs DockerContainerLogs
Remove DockerContainerRemove
Restart DockerContainerRestart
Run DockerContainerRun
Stop DockerContainerStop
}
Volume struct {
Remove DockerVolumeRemove
}
Pull DockerPull
}
func NewDocker() Docker {
var docker Docker
executable := pexec.NewExecutable("docker")
docker.Image.Inspect = DockerImageInspect{executable: executable}
docker.Image.Remove = DockerImageRemove{executable: executable}
docker.Image.Tag = DockerImageTag{executable: executable}
docker.Image.ExportToOCI = DockerImageOCI{}
docker.Container.Copy = DockerContainerCopy{executable: executable}
docker.Container.Exec = DockerContainerExec{executable: executable}
docker.Container.Inspect = DockerContainerInspect{executable: executable}
docker.Container.Logs = DockerContainerLogs{executable: executable}
docker.Container.Run = DockerContainerRun{
executable: executable,
inspect: docker.Container.Inspect,
}
docker.Container.Remove = DockerContainerRemove{executable: executable}
docker.Container.Restart = DockerContainerRestart{executable: executable}
docker.Container.Stop = DockerContainerStop{executable: executable}
docker.Volume.Remove = DockerVolumeRemove{executable: executable}
docker.Pull = DockerPull{executable: executable}
return docker
}
func (d Docker) WithExecutable(executable Executable) Docker {
d.Image.Inspect.executable = executable
d.Image.Remove.executable = executable
d.Image.Tag.executable = executable
d.Container.Copy.executable = executable
d.Container.Exec.executable = executable
d.Container.Inspect.executable = executable
d.Container.Logs.executable = executable
d.Container.Restart.executable = executable
d.Container.Remove.executable = executable
d.Container.Run.executable = executable
d.Container.Run.inspect = d.Container.Inspect
d.Container.Stop.executable = executable
d.Volume.Remove.executable = executable
d.Pull.executable = executable
return d
}
type DockerImageInspect struct {
executable Executable
}
func (i DockerImageInspect) Execute(ref string) (Image, error) {
stdout := bytes.NewBuffer(nil)
stderr := bytes.NewBuffer(nil)
err := i.executable.Execute(pexec.Execution{
Args: []string{"image", "inspect", ref},
Stdout: stdout,
Stderr: stderr,
})
if err != nil {
return Image{}, fmt.Errorf("failed to inspect docker image: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return NewImageFromInspectOutput(stdout.Bytes())
}
type DockerImageRemove struct {
executable Executable
force bool
}
func (r DockerImageRemove) WithForce() DockerImageRemove {
r.force = true
return r
}
func (r DockerImageRemove) Execute(ref string) error {
args := []string{"image", "remove", ref}
if r.force {
args = append(args, "--force")
}
stderr := bytes.NewBuffer(nil)
err := r.executable.Execute(pexec.Execution{
Args: args,
Stderr: stderr,
})
if err != nil {
return fmt.Errorf("failed to remove docker image: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}
type DockerImageTag struct {
executable Executable
}
func (r DockerImageTag) Execute(ref, target string) error {
stderr := bytes.NewBuffer(nil)
err := r.executable.Execute(pexec.Execution{
Args: []string{"image", "tag", ref, target},
Stderr: stderr,
})
if err != nil {
return fmt.Errorf("failed to tag docker image: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}
type DockerImageOCI struct {
client DockerDaemonClient
nameOptions []name.Option
}
func (r DockerImageOCI) WithNameOptions(opts ...name.Option) DockerImageOCI {
r.nameOptions = opts
return r
}
func (r DockerImageOCI) WithClient(client DockerDaemonClient) DockerImageOCI {
r.client = client
return r
}
func (r DockerImageOCI) Execute(ref string) (v1.Image, error) {
if r.client == nil {
client, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
if err != nil {
return nil, err
}
r.client = client
}
nameRef, err := name.ParseReference(ref, r.nameOptions...)
if err != nil {
return nil, err
}
return daemon.Image(nameRef, daemon.WithClient(r.client))
}
type DockerContainerRun struct {
executable Executable
inspect DockerContainerInspect
command string
commandArgs []string
direct bool
entrypoint string
env map[string]string
memory string
network string
publishAll bool
publishPorts []string
tty bool
volumes []string
readOnly bool
mounts []string
}
func (r DockerContainerRun) WithEnv(env map[string]string) DockerContainerRun {
r.env = env
return r
}
func (r DockerContainerRun) WithMemory(memoryLimit string) DockerContainerRun {
r.memory = memoryLimit
return r
}
func (r DockerContainerRun) WithCommand(command string) DockerContainerRun {
r.command = command
return r
}
func (r DockerContainerRun) WithCommandArgs(commandArgs []string) DockerContainerRun {
r.commandArgs = commandArgs
return r
}
func (r DockerContainerRun) WithDirect() DockerContainerRun {
r.direct = true
return r
}
func (r DockerContainerRun) WithTTY() DockerContainerRun {
r.tty = true
return r
}
func (r DockerContainerRun) WithEntrypoint(entrypoint string) DockerContainerRun {
r.entrypoint = entrypoint
return r
}
func (r DockerContainerRun) WithPublish(value string) DockerContainerRun {
r.publishPorts = append(r.publishPorts, value)
return r
}
func (r DockerContainerRun) WithPublishAll() DockerContainerRun {
r.publishAll = true
return r
}
// Deprecated: Use WithVolumes(...volumes) instead.
func (r DockerContainerRun) WithVolume(volume string) DockerContainerRun {
r.volumes = append(r.volumes, volume)
return r
}
func (r DockerContainerRun) WithVolumes(volumes ...string) DockerContainerRun {
r.volumes = append(r.volumes, volumes...)
return r
}
func (r DockerContainerRun) WithNetwork(network string) DockerContainerRun {
r.network = network
return r
}
func (r DockerContainerRun) WithReadOnly() DockerContainerRun {
r.readOnly = true
return r
}
func (r DockerContainerRun) WithMounts(mounts ...string) DockerContainerRun {
r.mounts = append(r.mounts, mounts...)
return r
}
func (r DockerContainerRun) Execute(imageID string) (Container, error) {
args := []string{"container", "run", "--detach"}
if r.tty {
args = append(args, "--tty")
}
if len(r.env) > 0 {
var keys []string
for key := range r.env {
keys = append(keys, key)
}
sort.Strings(keys)
for _, key := range keys {
args = append(args, "--env", fmt.Sprintf("%s=%s", key, r.env[key]))
}
}
if len(r.publishPorts) > 0 {
for _, port := range r.publishPorts {
args = append(args, "--publish", port)
}
}
if r.publishAll {
args = append(args, "--publish-all")
}
if r.memory != "" {
args = append(args, "--memory", r.memory)
}
if r.entrypoint != "" {
args = append(args, "--entrypoint", r.entrypoint)
}
if r.network != "" {
args = append(args, "--network", r.network)
}
for _, volume := range r.volumes {
args = append(args, "--volume", volume)
}
if r.readOnly {
args = append(args, "--read-only")
}
for _, mount := range r.mounts {
args = append(args, "--mount", mount)
}
args = append(args, imageID)
if r.direct {
args = append(args, "--")
}
if r.command != "" {
args = append(args, r.command)
}
args = append(args, r.commandArgs...)
stdout := bytes.NewBuffer(nil)
stderr := bytes.NewBuffer(nil)
err := r.executable.Execute(pexec.Execution{
Args: args,
Stdout: stdout,
Stderr: stderr,
})
if err != nil {
return Container{}, fmt.Errorf("failed to run docker container: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return r.inspect.Execute(strings.TrimSpace(stdout.String()))
}
type DockerContainerRestart struct {
executable Executable
}
func (r DockerContainerRestart) Execute(containerID string) error {
stderr := bytes.NewBuffer(nil)
err := r.executable.Execute(pexec.Execution{
Args: []string{"container", "restart", containerID},
Stderr: stderr,
})
if err != nil {
return fmt.Errorf("failed to restart docker container: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}
type DockerContainerRemove struct {
executable Executable
}
func (r DockerContainerRemove) Execute(containerID string) error {
stderr := bytes.NewBuffer(nil)
err := r.executable.Execute(pexec.Execution{
Args: []string{"container", "rm", containerID, "--force"},
Stderr: stderr,
})
if err != nil {
return fmt.Errorf("failed to remove docker container: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}
type DockerContainerInspect struct {
executable Executable
}
func (i DockerContainerInspect) Execute(containerID string) (Container, error) {
stdout := bytes.NewBuffer(nil)
stderr := bytes.NewBuffer(nil)
err := i.executable.Execute(pexec.Execution{
Args: []string{"container", "inspect", containerID},
Stdout: stdout,
Stderr: stderr,
})
if err != nil {
return Container{}, fmt.Errorf("failed to inspect docker container: %w: %s", err, strings.TrimSpace(stderr.String()))
}
container, err := NewContainerFromInspectOutput(stdout.Bytes())
if err != nil {
return Container{}, fmt.Errorf("failed to inspect docker container: %w", err)
}
return container, nil
}
type DockerContainerLogs struct {
executable Executable
}
func (l DockerContainerLogs) Execute(containerID string) (fmt.Stringer, error) {
output := bytes.NewBuffer(nil)
err := l.executable.Execute(pexec.Execution{
Args: []string{"container", "logs", containerID},
Stdout: output,
Stderr: output,
})
if err != nil {
return nil, fmt.Errorf("failed to fetch docker container logs: %w: %s", err, strings.TrimSpace(output.String()))
}
return output, nil
}
type DockerContainerStop struct {
executable Executable
}
func (s DockerContainerStop) Execute(containerID string) error {
output := bytes.NewBuffer(nil)
err := s.executable.Execute(pexec.Execution{
Args: []string{"container", "stop", containerID},
Stdout: output,
Stderr: output,
})
if err != nil {
return fmt.Errorf("failed to stop docker container: %w: %s", err, strings.TrimSpace(output.String()))
}
return nil
}
type DockerContainerCopy struct {
executable Executable
}
func (docker DockerContainerCopy) Execute(source, dest string) error {
stderr := bytes.NewBuffer(nil)
err := docker.executable.Execute(pexec.Execution{
Args: []string{"container", "cp", source, dest},
Stderr: stderr,
})
if err != nil {
return fmt.Errorf("'docker cp' failed: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}
type DockerContainerExec struct {
executable Executable
stdin io.Reader
user string
interactive bool
}
func (e DockerContainerExec) WithStdin(stdin io.Reader) DockerContainerExec {
e.stdin = stdin
return e
}
func (e DockerContainerExec) WithUser(user string) DockerContainerExec {
e.user = user
return e
}
func (e DockerContainerExec) WithInteractive() DockerContainerExec {
e.interactive = true
return e
}
func (e DockerContainerExec) Execute(container string, arguments ...string) error {
args := []string{"container", "exec"}
if e.interactive {
args = append(args, "--interactive")
}
if e.user != "" {
args = append(args, "--user", e.user)
}
args = append(args, container)
args = append(args, arguments...)
stderr := bytes.NewBuffer(nil)
err := e.executable.Execute(pexec.Execution{
Args: args,
Stderr: stderr,
Stdin: e.stdin,
})
if err != nil {
return fmt.Errorf("'docker exec' failed: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}
func (e DockerContainerExec) ExecuteBash(container, script string) error {
return e.Execute(container, "/bin/bash", "-c", script)
}
type DockerVolumeRemove struct {
executable Executable
}
func (r DockerVolumeRemove) Execute(volumes []string) error {
args := []string{"volume", "rm", "--force"}
args = append(args, volumes...)
stderr := bytes.NewBuffer(nil)
err := r.executable.Execute(pexec.Execution{
Args: args,
Stderr: stderr,
})
if err != nil {
return fmt.Errorf("failed to remove docker volume: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}
type DockerPull struct {
executable Executable
}
func (p DockerPull) Execute(image string) error {
stderr := bytes.NewBuffer(nil)
err := p.executable.Execute(pexec.Execution{
Args: []string{"pull", image},
Stderr: stderr,
})
if err != nil {
return fmt.Errorf("failed to pull docker image: %w: %s", err, strings.TrimSpace(stderr.String()))
}
return nil
}