| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /*
- Copyright 2020 Docker Compose CLI 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 compose
- import (
- "context"
- "crypto/sha1"
- "fmt"
- "path/filepath"
- _ "github.com/docker/buildx/driver/docker" //nolint:blank-imports
- _ "github.com/docker/buildx/driver/docker-container" //nolint:blank-imports
- _ "github.com/docker/buildx/driver/kubernetes" //nolint:blank-imports
- _ "github.com/docker/buildx/driver/remote" //nolint:blank-imports
- buildx "github.com/docker/buildx/util/progress"
- "github.com/moby/buildkit/client"
- "github.com/docker/buildx/build"
- "github.com/docker/buildx/builder"
- "github.com/docker/buildx/util/dockerutil"
- "github.com/docker/compose/v2/pkg/progress"
- )
- func (s *composeService) doBuildBuildkit(ctx context.Context, service string, opts build.Options, p *buildx.Printer) (map[string]string, error) {
- b, err := builder.New(s.dockerCli)
- if err != nil {
- return nil, err
- }
- nodes, err := b.LoadNodes(ctx, false)
- if err != nil {
- return nil, err
- }
- var response map[string]*client.SolveResponse
- if s.dryRun {
- response = s.dryRunBuildResponse(ctx, service, opts)
- } else {
- response, err = build.Build(ctx, nodes, map[string]build.Options{service: opts}, dockerutil.NewClient(s.dockerCli), filepath.Dir(s.configFile().Filename), buildx.WithPrefix(p, service, true))
- if err != nil {
- return nil, WrapCategorisedComposeError(err, BuildFailure)
- }
- }
- imagesBuilt := map[string]string{}
- for name, img := range response {
- if img == nil || len(img.ExporterResponse) == 0 {
- continue
- }
- digest, ok := img.ExporterResponse["containerimage.digest"]
- if !ok {
- continue
- }
- imagesBuilt[name] = digest
- }
- return imagesBuilt, err
- }
- func (s composeService) dryRunBuildResponse(ctx context.Context, name string, options build.Options) map[string]*client.SolveResponse {
- w := progress.ContextWriter(ctx)
- buildResponse := map[string]*client.SolveResponse{}
- dryRunUUID := fmt.Sprintf("dryRun-%x", sha1.Sum([]byte(name)))
- w.Event(progress.Event{
- ID: " ",
- Status: progress.Done,
- Text: fmt.Sprintf("build service %s", name),
- })
- w.Event(progress.Event{
- ID: "==>",
- Status: progress.Done,
- Text: fmt.Sprintf("==> writing image %s", dryRunUUID),
- })
- w.Event(progress.Event{
- ID: "==> ==>",
- Status: progress.Done,
- Text: fmt.Sprintf(`naming to %s`, options.Tags[0]),
- })
- buildResponse[name] = &client.SolveResponse{ExporterResponse: map[string]string{
- "containerimage.digest": dryRunUUID,
- }}
- return buildResponse
- }
|