| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- /*
- 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"
- "net/url"
- "os"
- "path"
- "strings"
- "github.com/compose-spec/compose-go/types"
- "github.com/containerd/containerd/platforms"
- "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"
- moby "github.com/docker/docker/api/types"
- "github.com/docker/docker/errdefs"
- bclient "github.com/moby/buildkit/client"
- specs "github.com/opencontainers/image-spec/specs-go/v1"
- "github.com/docker/compose-cli/api/compose"
- composeprogress "github.com/docker/compose-cli/api/progress"
- "github.com/docker/compose-cli/cli/metrics"
- "github.com/docker/compose-cli/utils"
- )
- func (s *composeService) Build(ctx context.Context, project *types.Project, options compose.BuildOptions) 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)
- buildOptions, err := s.toBuildOptions(service, project.WorkingDir, imageName)
- if err != nil {
- return err
- }
- buildOptions.Pull = options.Pull
- buildOptions.BuildArgs = options.Args
- buildOptions.NoCache = options.NoCache
- opts[imageName] = buildOptions
- buildOptions.CacheFrom, err = build.ParseCacheEntry(service.Build.CacheFrom)
- if err != nil {
- return err
- }
- for _, image := range service.Build.CacheFrom {
- buildOptions.CacheFrom = append(buildOptions.CacheFrom, bclient.CacheOptionsEntry{
- Type: "registry",
- Attrs: map[string]string{"ref": image},
- })
- }
- }
- }
- err := s.build(ctx, project, opts, Containers{}, options.Progress)
- if err == nil {
- if len(imagesToBuild) > 0 {
- utils.DisplayScanSuggestMsg()
- }
- }
- return err
- }
- func (s *composeService) ensureImagesExists(ctx context.Context, project *types.Project, observedState Containers, quietPull bool) 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.Build != nil {
- if localImagePresent && service.PullPolicy != types.PullPolicyBuild {
- continue
- }
- imagesToBuild = append(imagesToBuild, imageName)
- opts[imageName], err = s.toBuildOptions(service, project.WorkingDir, imageName)
- if err != nil {
- return err
- }
- continue
- }
- if service.Image != "" {
- if localImagePresent {
- 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}, // Used to retrieve image to pull in case of windows engine
- Pull: true,
- }
- }
- mode := progress.PrinterModeAuto
- if quietPull {
- mode = progress.PrinterModeQuiet
- }
- err := s.build(ctx, project, opts, observedState, mode)
- if err == nil {
- if len(imagesToBuild) > 0 {
- utils.DisplayScanSuggestMsg()
- }
- }
- 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, observedState Containers, mode string) error {
- info, err := s.apiClient.Info(ctx)
- if err != nil {
- return err
- }
- if info.OSType == "windows" {
- // no support yet for Windows container builds in Buildkit
- // https://docs.docker.com/develop/develop-images/build_enhancements/#limitations
- err := s.windowsBuild(opts, mode)
- return metrics.WrapCategorisedComposeError(err, metrics.BuildFailure)
- }
- 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, mode)
- // 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
- }
- if err != nil {
- return metrics.WrapCategorisedComposeError(err, metrics.BuildFailure)
- }
- cw := composeprogress.ContextWriter(ctx)
- for _, c := range observedState {
- for imageName := range opts {
- if c.Image == imageName {
- err = s.removeContainers(ctx, cw, []moby.Container{c}, nil)
- if err != nil {
- return err
- }
- }
- }
- }
- return err
- }
- func (s *composeService) toBuildOptions(service types.ServiceConfig, contextPath string, imageTag string) (build.Options, error) {
- var tags []string
- tags = append(tags, imageTag)
- if service.Build.Dockerfile == "" {
- service.Build.Dockerfile = "Dockerfile"
- }
- var buildArgs map[string]string
- var plats []specs.Platform
- if service.Platform != "" {
- p, err := platforms.Parse(service.Platform)
- if err != nil {
- return build.Options{}, err
- }
- plats = append(plats, p)
- }
- var input build.Inputs
- _, err := url.ParseRequestURI(service.Build.Context)
- if err == nil {
- input = build.Inputs{
- ContextPath: service.Build.Context,
- DockerfilePath: service.Build.Dockerfile,
- }
- } else {
- input = build.Inputs{
- ContextPath: path.Join(contextPath, service.Build.Context),
- DockerfilePath: path.Join(contextPath, service.Build.Context, service.Build.Dockerfile),
- }
- }
- return build.Options{
- Inputs: input,
- BuildArgs: flatten(mergeArgs(service.Build.Args, buildArgs)),
- Tags: tags,
- Target: service.Build.Target,
- Exports: []bclient.ExportEntry{{Type: "image", Attrs: map[string]string{}}},
- Platforms: plats,
- Labels: service.Build.Labels,
- }, nil
- }
- 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
- }
|