290 lines
7.7 KiB
Go
290 lines
7.7 KiB
Go
/*
|
|
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"
|
|
cliconfig "github.com/docker/cli/cli/config"
|
|
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"
|
|
"github.com/docker/compose-cli/api/config"
|
|
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"
|
|
|
|
configFile, err := cliconfig.Load(config.Dir())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
d, err := driver.GetDriver(ctx, drivername, nil, s.apiClient, configFile, 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
|
|
}
|