-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathimage.go
744 lines (641 loc) · 23.2 KB
/
image.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
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
/*
Copyright 2019 The Skaffold Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package docker
import (
"bufio"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"os"
"sort"
"strings"
"sync"
"time"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/api/types/filters"
"github.com/docker/docker/api/types/image"
"github.com/docker/docker/api/types/mount"
"github.com/docker/docker/api/types/network"
"github.com/docker/docker/api/types/volume"
"github.com/docker/docker/client"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/pkg/jsonmessage"
"github.com/docker/docker/pkg/progress"
"github.com/docker/docker/pkg/streamformatter"
"github.com/docker/go-connections/nat"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/config"
sErrors "github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/errors"
"github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/output/log"
"github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/schema/latest"
"github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/util"
"github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/util/term"
)
const (
retries = 5
sleepTime = 1 * time.Second
)
type ContainerRun struct {
Image string
User string
Command []string
Mounts []mount.Mount
Env []string
BeforeStart func(context.Context, string) error
}
type ContainerCreateOpts struct {
Name string
Network string
VolumesFrom []string
Wait bool
Bindings nat.PortMap
Mounts []mount.Mount
ContainerConfig *container.Config
VerifyTestName string
Labels map[string]string
}
// LocalDaemon talks to a local Docker API.
type LocalDaemon interface {
Close() error
ExtraEnv() []string
ServerVersion(ctx context.Context) (types.Version, error)
ConfigFile(ctx context.Context, image string) (*v1.ConfigFile, error)
Build(ctx context.Context, out io.Writer, workspace string, artifact string, a *latest.DockerArtifact, opts BuildOptions) (string, error)
ContainerLogs(ctx context.Context, w *io.PipeWriter, id string) error
ContainerExists(ctx context.Context, name string) bool
ContainerInspect(ctx context.Context, id string) (types.ContainerJSON, error)
ContainerList(ctx context.Context, options container.ListOptions) ([]types.Container, error)
Push(ctx context.Context, out io.Writer, ref string) (string, error)
Pull(ctx context.Context, out io.Writer, ref string, platform v1.Platform) error
Load(ctx context.Context, out io.Writer, input io.Reader, ref string) (string, error)
Run(ctx context.Context, out io.Writer, opts ContainerCreateOpts) (<-chan container.WaitResponse, <-chan error, string, error)
Delete(ctx context.Context, out io.Writer, id string) error
Tag(ctx context.Context, image, ref string) error
TagWithImageID(ctx context.Context, ref string, imageID string) (string, error)
ImageID(ctx context.Context, ref string) (string, error)
ImageInspectWithRaw(ctx context.Context, image string) (types.ImageInspect, []byte, error)
ImageRemove(ctx context.Context, image string, opts image.RemoveOptions) ([]image.DeleteResponse, error)
ImageExists(ctx context.Context, ref string) bool
ImageList(ctx context.Context, ref string) ([]image.Summary, error)
NetworkCreate(ctx context.Context, name string, labels map[string]string) error
NetworkRemove(ctx context.Context, name string) error
NetworkList(ctx context.Context, opts network.ListOptions) ([]network.Inspect, error)
Prune(ctx context.Context, images []string, pruneChildren bool) ([]string, error)
DiskUsage(ctx context.Context) (uint64, error)
RawClient() client.CommonAPIClient
VolumeCreate(ctx context.Context, opts volume.CreateOptions) (volume.Volume, error)
VolumeRemove(ctx context.Context, id string) error
Stop(ctx context.Context, id string, stopTimeout *time.Duration) error
Remove(ctx context.Context, id string) error
}
// BuildOptions provides parameters related to the LocalDaemon build.
type BuildOptions struct {
Tag string
Mode config.RunMode
ExtraBuildArgs map[string]*string
}
type localDaemon struct {
cfg Config
forceRemove bool
apiClient client.CommonAPIClient
extraEnv []string
imageCache map[string]*v1.ConfigFile
imageCacheLock sync.Mutex
}
// NewLocalDaemon creates a new LocalDaemon.
func NewLocalDaemon(apiClient client.CommonAPIClient, extraEnv []string, forceRemove bool, cfg Config) LocalDaemon {
return &localDaemon{
cfg: cfg,
apiClient: apiClient,
extraEnv: extraEnv,
forceRemove: forceRemove,
imageCache: make(map[string]*v1.ConfigFile),
}
}
// ExtraEnv returns the env variables needed to point at this local Docker
// eg. minikube. This has be set in addition to the current environment.
func (l *localDaemon) ExtraEnv() []string {
return l.extraEnv
}
// PushResult gives the information on an image that has been pushed.
type PushResult struct {
Digest string
}
// BuildResult gives the information on an image that has been built.
type BuildResult struct {
ID string
}
func (l *localDaemon) RawClient() client.CommonAPIClient {
return l.apiClient
}
// Close closes the connection with the local daemon.
func (l *localDaemon) Close() error {
return l.apiClient.Close()
}
func (l *localDaemon) VolumeCreate(ctx context.Context, opts volume.CreateOptions) (volume.Volume, error) {
return l.apiClient.VolumeCreate(ctx, opts)
}
func (l *localDaemon) VolumeRemove(ctx context.Context, id string) error {
return l.apiClient.VolumeRemove(ctx, id, false)
}
func (l *localDaemon) ContainerInspect(ctx context.Context, id string) (types.ContainerJSON, error) {
return l.apiClient.ContainerInspect(ctx, id)
}
func (l *localDaemon) ContainerList(ctx context.Context, options container.ListOptions) ([]types.Container, error) {
return l.apiClient.ContainerList(ctx, options)
}
// ContainerLogs streams logs line by line from a container in the local daemon to the provided PipeWriter.
func (l *localDaemon) ContainerLogs(ctx context.Context, w *io.PipeWriter, id string) error {
r, err := l.apiClient.ContainerLogs(ctx, id, container.LogsOptions{ShowStdout: true, ShowStderr: true, Follow: true})
if err != nil {
return err
}
rd := bufio.NewReader(r)
for {
s, err := rd.ReadString('\n')
if err != nil {
if err != io.EOF {
return err
}
return nil
}
w.Write([]byte(s))
}
}
func (l *localDaemon) ContainerExists(ctx context.Context, name string) bool {
_, err := l.apiClient.ContainerInspect(ctx, name)
return err == nil
}
// Delete stops, removes, and prunes a running container
func (l *localDaemon) Delete(ctx context.Context, out io.Writer, id string) error {
if err := l.apiClient.ContainerStop(ctx, id, container.StopOptions{}); err != nil {
log.Entry(ctx).Debugf("unable to stop running container: %s", err.Error())
}
if err := l.apiClient.ContainerRemove(ctx, id, container.RemoveOptions{}); err != nil {
log.Entry(ctx).Warnf("unable to remove container: %s", err.Error())
}
_, err := l.apiClient.ContainersPrune(ctx, filters.Args{})
if err != nil {
return fmt.Errorf("pruning removed container: %w", err)
}
return nil
}
// Run creates a container from a given image reference, and returns a wait channel and the container ID.
func (l *localDaemon) Run(ctx context.Context, out io.Writer, opts ContainerCreateOpts) (<-chan container.WaitResponse, <-chan error, string, error) {
if opts.ContainerConfig == nil {
return nil, nil, "", fmt.Errorf("cannot call Run with empty container config")
}
hCfg := &container.HostConfig{
NetworkMode: container.NetworkMode(opts.Network),
VolumesFrom: opts.VolumesFrom,
PortBindings: opts.Bindings,
Mounts: opts.Mounts,
}
c, err := l.apiClient.ContainerCreate(ctx, opts.ContainerConfig, hCfg, nil, nil, opts.Name)
if err != nil {
return nil, nil, "", err
}
if err := l.apiClient.ContainerStart(ctx, c.ID, container.StartOptions{}); err != nil {
return nil, nil, "", err
}
if opts.Wait {
statusCh, errCh := l.apiClient.ContainerWait(ctx, c.ID, container.WaitConditionNotRunning)
return statusCh, errCh, c.ID, nil
}
return nil, nil, c.ID, nil
}
func (l *localDaemon) NetworkCreate(ctx context.Context, name string, labels map[string]string) error {
nr, err := l.apiClient.NetworkList(ctx, network.ListOptions{})
if err != nil {
return err
}
for _, network := range nr {
if network.Name == name {
return nil
}
}
r, err := l.apiClient.NetworkCreate(ctx, name, network.CreateOptions{Labels: labels})
if err != nil {
return err
}
if r.Warning != "" {
log.Entry(ctx).Warn(r.Warning)
}
return nil
}
func (l *localDaemon) NetworkRemove(ctx context.Context, name string) error {
return l.apiClient.NetworkRemove(ctx, name)
}
func (l *localDaemon) NetworkList(ctx context.Context, opts network.ListOptions) ([]network.Inspect, error) {
return l.apiClient.NetworkList(ctx, opts)
}
// ServerVersion retrieves the version information from the server.
func (l *localDaemon) ServerVersion(ctx context.Context) (types.Version, error) {
return l.apiClient.ServerVersion(ctx)
}
// ConfigFile retrieves and caches image configurations.
func (l *localDaemon) ConfigFile(ctx context.Context, image string) (*v1.ConfigFile, error) {
l.imageCacheLock.Lock()
defer l.imageCacheLock.Unlock()
cachedCfg, present := l.imageCache[image]
if present {
return cachedCfg, nil
}
cfg := &v1.ConfigFile{}
_, raw, err := l.apiClient.ImageInspectWithRaw(ctx, image)
if err == nil {
if err := json.Unmarshal(raw, cfg); err != nil {
return nil, err
}
} else {
cfg, err = RetrieveRemoteConfig(image, l.cfg, v1.Platform{})
if err != nil {
return nil, err
}
}
l.imageCache[image] = cfg
return cfg, nil
}
func (l *localDaemon) CheckCompatible(a *latest.DockerArtifact) error {
if len(a.Secrets) > 0 || a.SSH != "" {
return fmt.Errorf("docker build options, secrets and ssh, require BuildKit - set `useBuildkit: true` in your config, or run with `DOCKER_BUILDKIT=1`")
}
return nil
}
// Build performs a docker build and returns the imageID.
func (l *localDaemon) Build(ctx context.Context, out io.Writer, workspace string, artifact string, a *latest.DockerArtifact, opts BuildOptions) (string, error) {
log.Entry(ctx).Debugf("Running docker build: context: %s, dockerfile: %s", workspace, a.DockerfilePath)
if err := l.CheckCompatible(a); err != nil {
return "", err
}
imageInfoEnv, err := EnvTags(opts.Tag)
if err != nil {
return "", fmt.Errorf("couldn't parse image tag: %w", err)
}
buildArgs, err := EvalBuildArgsWithEnv(opts.Mode, workspace, a.DockerfilePath, a.BuildArgs, opts.ExtraBuildArgs, imageInfoEnv)
if err != nil {
return "", fmt.Errorf("unable to evaluate build args: %w", err)
}
// Like `docker build`, we ignore the errors
// See https://github.com/docker/cli/blob/75c1bb1f33d7cedbaf48404597d5bf9818199480/cli/command/image/build.go#L364
authConfigs, _ := DefaultAuthHelper.GetAllAuthConfigs(ctx)
buildCtx, buildCtxWriter := io.Pipe()
go func() {
err := CreateDockerTarContext(ctx, buildCtxWriter,
NewBuildConfig(workspace, artifact, a.DockerfilePath, buildArgs), l.cfg)
if err != nil {
buildCtxWriter.CloseWithError(fmt.Errorf("creating docker context: %w", err))
return
}
buildCtxWriter.Close()
}()
progressOutput := streamformatter.NewProgressOutput(out)
body := progress.NewProgressReader(buildCtx, progressOutput, 0, "", "Sending build context to Docker daemon")
resp, err := l.apiClient.ImageBuild(ctx, body, types.ImageBuildOptions{
Tags: []string{opts.Tag},
Dockerfile: a.DockerfilePath,
BuildArgs: buildArgs,
CacheFrom: a.CacheFrom,
AuthConfigs: authConfigs,
Target: a.Target,
ForceRemove: l.forceRemove,
NetworkMode: strings.ToLower(a.NetworkMode),
ExtraHosts: a.AddHost,
NoCache: a.NoCache,
PullParent: a.PullParent,
})
if err != nil {
return "", fmt.Errorf("docker build: %w", err)
}
defer resp.Body.Close()
var imageID string
auxCallback := func(msg jsonmessage.JSONMessage) {
if msg.Aux == nil {
return
}
var result BuildResult
if err := json.Unmarshal(*msg.Aux, &result); err != nil {
log.Entry(ctx).Debug("Unable to parse build output:", err)
return
}
imageID = result.ID
}
if err := streamDockerMessages(out, resp.Body, auxCallback); err != nil {
var jm *jsonmessage.JSONError
if errors.As(err, &jm) {
return "", fmt.Errorf("docker build failure: %w", err)
}
return "", fmt.Errorf("unable to stream build output: %w", err)
}
if imageID == "" {
// Maybe this version of Docker doesn't return the digest of the image
// that has been built.
imageID, err = l.ImageID(ctx, opts.Tag)
if err != nil {
return "", fmt.Errorf("getting digest: %w", err)
}
}
return imageID, nil
}
// streamDockerMessages streams formatted json output from the docker daemon
func streamDockerMessages(dst io.Writer, src io.Reader, auxCallback func(jsonmessage.JSONMessage)) error {
termFd, isTerm := term.IsTerminal(dst)
return jsonmessage.DisplayJSONMessagesStream(src, dst, termFd, isTerm, auxCallback)
}
// Push pushes an image reference to a registry. Returns the image digest.
func (l *localDaemon) Push(ctx context.Context, out io.Writer, ref string) (string, error) {
registryAuth, err := l.encodedRegistryAuth(ctx, DefaultAuthHelper, ref)
if err != nil {
return "", fmt.Errorf("getting auth config for %q: %w", ref, err)
}
// Quick check if the image was already pushed (ignore any error).
if alreadyPushed, digest, err := l.isAlreadyPushed(ctx, ref, registryAuth); alreadyPushed && err == nil {
return digest, nil
}
rc, err := l.apiClient.ImagePush(ctx, ref, image.PushOptions{
RegistryAuth: registryAuth,
})
if err != nil {
return "", fmt.Errorf("%s %q: %w", sErrors.PushImageErr, ref, err)
}
defer rc.Close()
var digest string
auxCallback := func(msg jsonmessage.JSONMessage) {
if msg.Aux == nil {
return
}
var result PushResult
if err := json.Unmarshal(*msg.Aux, &result); err != nil {
log.Entry(ctx).Debug("Unable to parse push output:", err)
return
}
digest = result.Digest
}
if err := streamDockerMessages(out, rc, auxCallback); err != nil {
return "", fmt.Errorf("%s %q: %w", sErrors.PushImageErr, ref, err)
}
if digest == "" {
// Maybe this version of Docker doesn't return the digest of the image
// that has been pushed.
digest, err = RemoteDigest(ref, l.cfg, nil)
if err != nil {
return "", fmt.Errorf("getting digest: %w", err)
}
}
return digest, nil
}
// isAlreadyPushed quickly checks if the local image has already been pushed.
func (l *localDaemon) isAlreadyPushed(ctx context.Context, ref, registryAuth string) (bool, string, error) {
localImage, _, err := l.apiClient.ImageInspectWithRaw(ctx, ref)
if err != nil {
return false, "", err
}
if len(localImage.RepoDigests) == 0 {
return false, "", nil
}
remoteImage, err := l.apiClient.DistributionInspect(ctx, ref, registryAuth)
if err != nil {
return false, "", err
}
digest := remoteImage.Descriptor.Digest.String()
for _, repoDigest := range localImage.RepoDigests {
if parsed, err := ParseReference(repoDigest); err == nil {
if parsed.Digest == digest {
return true, parsed.Digest, nil
}
}
}
return false, "", nil
}
// Pull pulls an image reference from a registry.
func (l *localDaemon) Pull(ctx context.Context, out io.Writer, ref string, platform v1.Platform) error {
// We first try pulling the image with credentials. If that fails then retry
// without credentials in case the image is public.
// Set CLOUDSDK_CORE_VERBOSITY to suppress error messages emitted by docker-credential-gcloud
// when the user is not authenticated or lacks credentials to pull the given image. The errors
// are irrelevant when the image is public (e.g., `gcr.io/buildpacks/builder:v1`).`
// If the image is private, the error from GCR directs the user to the GCR authentication
// page which provides steps to rememdy the situation.
if v, found := os.LookupEnv("CLOUDSDK_CORE_VERBOSITY"); found {
defer os.Setenv("CLOUDSDK_CORE_VERBOSITY", v)
} else {
defer os.Unsetenv("CLOUDSDK_CORE_VERBOSITY")
}
os.Setenv("CLOUDSDK_CORE_VERBOSITY", "critical")
// Eargerly create credentials.
registryAuth, err := l.encodedRegistryAuth(ctx, DefaultAuthHelper, ref)
// Let's ignore the error because maybe the image is public
// and can be pulled without credentials.
rc, err := l.apiClient.ImagePull(ctx, ref, image.PullOptions{
RegistryAuth: registryAuth,
PrivilegeFunc: func(ctx context.Context) (string, error) {
// The first pull is unauthorized. There are two situations:
// 1. if `encodedRegistryAuth()` errored, then `registryAuth == ""` and so we've
// tried an anonymous pull which has failed. So return the original error from
// `encodedRegistryAuth()`.
// 2. If `encodedRegistryAuth()` succeeded (so `err == nil`), then our credential was rejected, so
// return "" to retry as an anonymous pull.
return "", err
},
Platform: platform.String(),
})
if err != nil {
return fmt.Errorf("pulling image from repository: %w", err)
}
defer rc.Close()
return streamDockerMessages(out, rc, nil)
}
// Load loads an image from a tar file. Returns the imageID for the loaded image.
func (l *localDaemon) Load(ctx context.Context, out io.Writer, input io.Reader, ref string) (string, error) {
resp, err := l.apiClient.ImageLoad(ctx, input, false)
if err != nil {
return "", fmt.Errorf("loading image into docker daemon: %w", err)
}
defer resp.Body.Close()
if err := streamDockerMessages(out, resp.Body, nil); err != nil {
return "", fmt.Errorf("reading from image load response: %w", err)
}
return l.ImageID(ctx, ref)
}
// Tag adds a tag to an image.
func (l *localDaemon) Tag(ctx context.Context, image, ref string) error {
return l.apiClient.ImageTag(ctx, image, ref)
}
// For k8s, we need a unique, immutable ID for the image.
// k8s doesn't recognize the imageID or any combination of the image name
// suffixed with the imageID, as a valid image name.
// So, the solution we chose is to create a tag, just for Skaffold, from
// the imageID, and use that in the manifests.
func (l *localDaemon) TagWithImageID(ctx context.Context, ref string, imageID string) (string, error) {
parsed, err := ParseReference(ref)
if err != nil {
return "", err
}
if imageID == "" {
log.Entry(ctx).Debugf("generating tag for %s: empty image id\n", ref)
return "", nil
}
uniqueTag := parsed.BaseName + ":" + strings.TrimPrefix(imageID, "sha256:")
if err := l.Tag(ctx, imageID, uniqueTag); err != nil {
return "", err
}
return uniqueTag, nil
}
// ImageID returns the image ID for a corresponding reference.
func (l *localDaemon) ImageID(ctx context.Context, ref string) (string, error) {
image, _, err := l.apiClient.ImageInspectWithRaw(ctx, ref)
if err != nil {
if client.IsErrNotFound(err) {
return "", nil
}
return "", localDigestGetErr(ref, err)
}
return image.ID, nil
}
func (l *localDaemon) ImageExists(ctx context.Context, ref string) bool {
_, _, err := l.apiClient.ImageInspectWithRaw(ctx, ref)
return err == nil
}
func (l *localDaemon) ImageInspectWithRaw(ctx context.Context, image string) (types.ImageInspect, []byte, error) {
return l.apiClient.ImageInspectWithRaw(ctx, image)
}
func (l *localDaemon) ImageRemove(ctx context.Context, image string, opts image.RemoveOptions) ([]image.DeleteResponse, error) {
for i := 0; i < retries; i++ {
resp, err := l.apiClient.ImageRemove(ctx, image, opts)
if err == nil {
return resp, nil
}
if _, ok := err.(errdefs.ErrConflict); !ok {
return nil, err
}
time.Sleep(sleepTime)
}
return nil, fmt.Errorf("could not remove image %q after %d retries", image, retries)
}
func (l *localDaemon) ImageList(ctx context.Context, ref string) ([]image.Summary, error) {
return l.apiClient.ImageList(ctx, image.ListOptions{
Filters: filters.NewArgs(filters.Arg("reference", ref)),
})
}
func (l *localDaemon) DiskUsage(ctx context.Context) (uint64, error) {
usage, err := l.apiClient.DiskUsage(ctx, types.DiskUsageOptions{})
if err != nil {
return 0, err
}
return uint64(usage.LayersSize), nil
}
func ToCLIBuildArgs(a *latest.DockerArtifact, evaluatedArgs map[string]*string, env map[string]string) ([]string, error) {
var args []string
var keys []string
for k := range evaluatedArgs {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
args = append(args, "--build-arg")
v := evaluatedArgs[k]
if v == nil {
args = append(args, k)
} else {
args = append(args, fmt.Sprintf("%s=%s", k, *v))
}
}
for _, host := range a.AddHost {
args = append(args, "--add-host", host)
}
for _, from := range a.CacheFrom {
args = append(args, "--cache-from", from)
}
for _, cliFlag := range a.CliFlags {
cliFlag, err := util.ExpandEnvTemplate(cliFlag, env)
if err != nil {
return nil, fmt.Errorf("unable to evaluate cli flags: %w", err)
}
args = append(args, cliFlag)
}
if a.Target != "" {
args = append(args, "--target", a.Target)
}
if a.NetworkMode != "" {
args = append(args, "--network", strings.ToLower(a.NetworkMode))
}
if a.NoCache {
args = append(args, "--no-cache")
}
if a.Squash {
args = append(args, "--squash")
}
if a.PullParent {
args = append(args, "--pull")
}
for _, secret := range a.Secrets {
secretString := fmt.Sprintf("id=%s", secret.ID)
if secret.Source != "" {
secretString += ",src=" + util.ExpandHomePath(secret.Source)
}
if secret.Env != "" {
secretString += ",env=" + secret.Env
}
args = append(args, "--secret", secretString)
}
if a.SSH != "" {
args = append(args, "--ssh", a.SSH)
}
return args, nil
}
func (l *localDaemon) Prune(ctx context.Context, images []string, pruneChildren bool) ([]string, error) {
var pruned []string
var errRt error
for _, id := range images {
resp, err := l.ImageRemove(ctx, id, image.RemoveOptions{
Force: true,
PruneChildren: pruneChildren,
})
if err == nil {
pruned = append(pruned, id)
} else if errRt == nil {
// save the first error
errRt = fmt.Errorf("pruning images: %w", err)
}
for _, r := range resp {
if r.Deleted != "" {
log.Entry(ctx).Debugf("deleted image %s\n", r.Deleted)
}
if r.Untagged != "" {
log.Entry(ctx).Debugf("untagged image %s\n", r.Untagged)
}
}
}
return pruned, errRt
}
func (l *localDaemon) Stop(ctx context.Context, id string, stopTimeout *time.Duration) error {
var so container.StopOptions
if stopTimeout != nil {
so.Timeout = util.Ptr[int](int(stopTimeout.Seconds()))
}
if err := l.apiClient.ContainerStop(ctx, id, so); err != nil {
log.Entry(ctx).Debugf("unable to stop running container: %s", err.Error())
return err
}
return nil
}
func (l *localDaemon) Remove(ctx context.Context, id string) error {
if err := l.apiClient.ContainerRemove(ctx, id, container.RemoveOptions{}); err != nil {
log.Entry(ctx).Debugf("unable to remove container: %s", err.Error())
return fmt.Errorf("unable to remove container: %w", err)
}
return nil
}