| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- /*
- 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"
- "fmt"
- "os"
- "path"
- "strings"
- "github.com/compose-spec/compose-go/types"
- "github.com/docker/buildx/build"
- "github.com/docker/buildx/driver"
- _ "github.com/docker/buildx/driver/docker" // required to get default driver registered
- "github.com/docker/buildx/util/progress"
- "github.com/docker/docker/errdefs"
- bclient "github.com/moby/buildkit/client"
- )
- func (s *composeService) Build(ctx context.Context, project *types.Project) error {
- opts := map[string]build.Options{}
- imagesToBuild := []string{}
- for _, service := range project.Services {
- if service.Build != nil {
- imageName := getImageName(service, project.Name)
- imagesToBuild = append(imagesToBuild, imageName)
- opts[imageName] = s.toBuildOptions(service, project.WorkingDir, imageName)
- }
- }
- err := s.build(ctx, project, opts)
- if err == nil {
- displayScanSuggestMsg(ctx, imagesToBuild)
- }
- return err
- }
- func (s *composeService) ensureImagesExists(ctx context.Context, project *types.Project) error {
- opts := map[string]build.Options{}
- imagesToBuild := []string{}
- for _, service := range project.Services {
- if service.Image == "" && service.Build == nil {
- return fmt.Errorf("invalid service %q. Must specify either image or build", service.Name)
- }
- imageName := getImageName(service, project.Name)
- localImagePresent, err := s.localImagePresent(ctx, imageName)
- if err != nil {
- return err
- }
- if service.Image != "" {
- if localImagePresent {
- continue
- }
- }
- if service.Build != nil {
- if localImagePresent && service.PullPolicy != types.PullPolicyBuild {
- continue
- }
- imagesToBuild = append(imagesToBuild, imageName)
- opts[imageName] = s.toBuildOptions(service, project.WorkingDir, imageName)
- continue
- }
- // Buildx has no command to "just pull", see
- // so we bake a temporary dockerfile that will just pull and export pulled image
- opts[service.Name] = build.Options{
- Inputs: build.Inputs{
- ContextPath: ".",
- DockerfilePath: "-",
- InStream: strings.NewReader("FROM " + service.Image),
- },
- Tags: []string{service.Image},
- Pull: true,
- }
- }
- err := s.build(ctx, project, opts)
- if err == nil {
- displayScanSuggestMsg(ctx, imagesToBuild)
- }
- return err
- }
- func (s *composeService) localImagePresent(ctx context.Context, imageName string) (bool, error) {
- _, _, err := s.apiClient.ImageInspectWithRaw(ctx, imageName)
- if err != nil {
- if errdefs.IsNotFound(err) {
- return false, nil
- }
- return false, err
- }
- return true, nil
- }
- func (s *composeService) build(ctx context.Context, project *types.Project, opts map[string]build.Options) error {
- if len(opts) == 0 {
- return nil
- }
- const drivername = "default"
- d, err := driver.GetDriver(ctx, drivername, nil, s.apiClient, nil, nil, nil, "", nil, nil, project.WorkingDir)
- if err != nil {
- return err
- }
- driverInfo := []build.DriverInfo{
- {
- Name: "default",
- Driver: d,
- },
- }
- // Progress needs its own context that lives longer than the
- // build one otherwise it won't read all the messages from
- // build and will lock
- progressCtx, cancel := context.WithCancel(context.Background())
- defer cancel()
- w := progress.NewPrinter(progressCtx, os.Stdout, "auto")
- // We rely on buildx "docker" builder integrated in docker engine, so don't need a DockerAPI here
- _, err = build.Build(ctx, driverInfo, opts, nil, nil, w)
- errW := w.Wait()
- if err == nil {
- err = errW
- }
- return err
- }
- func (s *composeService) toBuildOptions(service types.ServiceConfig, contextPath string, imageTag string) build.Options {
- var tags []string
- tags = append(tags, imageTag)
- if service.Build.Dockerfile == "" {
- service.Build.Dockerfile = "Dockerfile"
- }
- var buildArgs map[string]string
- return build.Options{
- Inputs: build.Inputs{
- ContextPath: path.Join(contextPath, service.Build.Context),
- DockerfilePath: path.Join(contextPath, service.Build.Context, service.Build.Dockerfile),
- },
- BuildArgs: flatten(mergeArgs(service.Build.Args, buildArgs)),
- Tags: tags,
- Target: service.Build.Target,
- Exports: []bclient.ExportEntry{{Type: "image", Attrs: map[string]string{}}},
- }
- }
- func flatten(in types.MappingWithEquals) map[string]string {
- if len(in) == 0 {
- return nil
- }
- out := make(map[string]string)
- for k, v := range in {
- if v == nil {
- continue
- }
- out[k] = *v
- }
- return out
- }
- func mergeArgs(src types.MappingWithEquals, values map[string]string) types.MappingWithEquals {
- for key := range src {
- if val, ok := values[key]; ok {
- if val == "" {
- src[key] = nil
- } else {
- src[key] = &val
- }
- }
- }
- return src
- }
|