use build as common API for build scenarios

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2023-03-15 17:19:55 +01:00 committed by Nicolas De loof
parent 9e19bc8441
commit 88b0d17ff8
5 changed files with 214 additions and 84 deletions

View File

@ -69,41 +69,11 @@ func (s *composeService) build(ctx context.Context, project *types.Project, opti
return nil return nil
} }
imageName := api.GetImageNameOrDefault(service, project.Name) imageName := api.GetImageNameOrDefault(service, project.Name)
buildOptions, err := s.toBuildOptions(project, service, imageName, options.SSHs) buildOptions, err := s.toBuildOptions(project, service, imageName, options)
if err != nil { if err != nil {
return err return err
} }
buildOptions.Pull = options.Pull
buildOptions.BuildArgs = mergeArgs(buildOptions.BuildArgs, args) buildOptions.BuildArgs = mergeArgs(buildOptions.BuildArgs, args)
buildOptions.NoCache = options.NoCache
buildOptions.CacheFrom, err = buildflags.ParseCacheEntry(service.Build.CacheFrom)
if err != nil {
return err
}
if len(service.Build.AdditionalContexts) > 0 {
buildOptions.Inputs.NamedContexts = toBuildContexts(service.Build.AdditionalContexts)
}
for _, image := range service.Build.CacheFrom {
buildOptions.CacheFrom = append(buildOptions.CacheFrom, bclient.CacheOptionsEntry{
Type: "registry",
Attrs: map[string]string{"ref": image},
})
}
buildOptions.Exports = []bclient.ExportEntry{{
Type: "docker",
Attrs: map[string]string{
"load": "true",
"push": fmt.Sprint(options.Push),
},
}}
if len(buildOptions.Platforms) > 1 {
buildOptions.Exports = []bclient.ExportEntry{{
Type: "image",
Attrs: map[string]string{
"push": fmt.Sprint(options.Push),
},
}}
}
opts := map[string]build.Options{imageName: buildOptions} opts := map[string]build.Options{imageName: buildOptions}
ids, err := s.doBuild(ctx, project, opts, options.Progress) ids, err := s.doBuild(ctx, project, opts, options.Progress)
if err != nil { if err != nil {
@ -146,11 +116,14 @@ func (s *composeService) ensureImagesExists(ctx context.Context, project *types.
if quietPull { if quietPull {
mode = xprogress.PrinterModeQuiet mode = xprogress.PrinterModeQuiet
} }
opts, err := s.getBuildOptions(project, images)
err = s.prepareProjectForBuild(project, images)
if err != nil { if err != nil {
return err return err
} }
builtImages, err := s.doBuild(ctx, project, opts, mode) builtImages, err := s.build(ctx, project, api.BuildOptions{
Progress: mode,
})
if err != nil { if err != nil {
return err return err
} }
@ -172,37 +145,45 @@ func (s *composeService) ensureImagesExists(ctx context.Context, project *types.
return nil return nil
} }
func (s *composeService) getBuildOptions(project *types.Project, images map[string]string) (map[string]build.Options, error) { func (s *composeService) prepareProjectForBuild(project *types.Project, images map[string]string) error {
opts := map[string]build.Options{} platform := project.Environment["DOCKER_DEFAULT_PLATFORM"]
for _, service := range project.Services { for i, service := range project.Services {
if service.Image == "" && service.Build == nil { if service.Image == "" && service.Build == nil {
return nil, fmt.Errorf("invalid service %q. Must specify either image or build", service.Name) return fmt.Errorf("invalid service %q. Must specify either image or build", service.Name)
}
if service.Build == nil {
continue
} }
imageName := api.GetImageNameOrDefault(service, project.Name)
_, localImagePresent := images[imageName]
if service.Build != nil { imageName := api.GetImageNameOrDefault(service, project.Name)
service.Image = imageName
_, localImagePresent := images[imageName]
if localImagePresent && service.PullPolicy != types.PullPolicyBuild { if localImagePresent && service.PullPolicy != types.PullPolicyBuild {
service.Build = nil
project.Services[i] = service
continue continue
} }
opt, err := s.toBuildOptions(project, service, imageName, []types.SSHKey{})
if err != nil { if platform != "" {
return nil, err if len(service.Build.Platforms) > 0 && !utils.StringContains(service.Build.Platforms, platform) {
return fmt.Errorf("service %q build.platforms does not support value set by DOCKER_DEFAULT_PLATFORM: %s", service.Name, platform)
} }
opt.Exports = []bclient.ExportEntry{{ service.Platform = platform
Type: "docker",
Attrs: map[string]string{
"load": "true",
},
}}
if opt.Platforms, err = useDockerDefaultOrServicePlatform(project, service, true); err != nil {
opt.Platforms = []specs.Platform{}
} }
opts[imageName] = opt
continue if service.Platform == "" {
// let builder to build for default platform
service.Build.Platforms = nil
} else {
if len(service.Build.Platforms) > 0 && !utils.StringContains(service.Build.Platforms, service.Platform) {
return fmt.Errorf("service %q build configuration does not support platform: %s", service.Name, platform)
} }
service.Build.Platforms = []string{service.Platform}
} }
return opts, nil project.Services[i] = service
}
return nil
} }
func (s *composeService) getLocalImagesDigests(ctx context.Context, project *types.Project) (map[string]string, error) { func (s *composeService) getLocalImagesDigests(ctx context.Context, project *types.Project) (map[string]string, error) {
@ -243,7 +224,7 @@ func (s *composeService) doBuild(ctx context.Context, project *types.Project, op
return s.doBuildBuildkit(ctx, opts, mode) return s.doBuildBuildkit(ctx, opts, mode)
} }
func (s *composeService) toBuildOptions(project *types.Project, service types.ServiceConfig, imageTag string, sshKeys []types.SSHKey) (build.Options, error) { func (s *composeService) toBuildOptions(project *types.Project, service types.ServiceConfig, imageTag string, options api.BuildOptions) (build.Options, error) {
var tags []string var tags []string
tags = append(tags, imageTag) tags = append(tags, imageTag)
@ -272,8 +253,8 @@ func (s *composeService) toBuildOptions(project *types.Project, service types.Se
sessionConfig := []session.Attachable{ sessionConfig := []session.Attachable{
authprovider.NewDockerAuthProvider(s.configFile()), authprovider.NewDockerAuthProvider(s.configFile()),
} }
if len(sshKeys) > 0 || len(service.Build.SSH) > 0 { if len(options.SSHs) > 0 || len(service.Build.SSH) > 0 {
sshAgentProvider, err := sshAgentProvider(append(service.Build.SSH, sshKeys...)) sshAgentProvider, err := sshAgentProvider(append(service.Build.SSH, options.SSHs...))
if err != nil { if err != nil {
return build.Options{}, err return build.Options{}, err
} }
@ -298,20 +279,37 @@ func (s *composeService) toBuildOptions(project *types.Project, service types.Se
imageLabels := getImageBuildLabels(project, service) imageLabels := getImageBuildLabels(project, service)
exports := []bclient.ExportEntry{{
Type: "docker",
Attrs: map[string]string{
"load": "true",
"push": fmt.Sprint(options.Push),
},
}}
if len(service.Build.Platforms) > 1 {
exports = []bclient.ExportEntry{{
Type: "image",
Attrs: map[string]string{
"push": fmt.Sprint(options.Push),
},
}}
}
return build.Options{ return build.Options{
Inputs: build.Inputs{ Inputs: build.Inputs{
ContextPath: service.Build.Context, ContextPath: service.Build.Context,
DockerfileInline: service.Build.DockerfileInline, DockerfileInline: service.Build.DockerfileInline,
DockerfilePath: dockerFilePath(service.Build.Context, service.Build.Dockerfile), DockerfilePath: dockerFilePath(service.Build.Context, service.Build.Dockerfile),
NamedContexts: toBuildContexts(service.Build.AdditionalContexts),
}, },
CacheFrom: cacheFrom, CacheFrom: cacheFrom,
CacheTo: cacheTo, CacheTo: cacheTo,
NoCache: service.Build.NoCache, NoCache: service.Build.NoCache || options.NoCache,
Pull: service.Build.Pull, Pull: service.Build.Pull || options.Pull,
BuildArgs: buildArgs, BuildArgs: buildArgs,
Tags: tags, Tags: tags,
Target: service.Build.Target, Target: service.Build.Target,
Exports: []bclient.ExportEntry{{Type: "image", Attrs: map[string]string{}}}, Exports: exports,
Platforms: plats, Platforms: plats,
Labels: imageLabels, Labels: imageLabels,
NetworkMode: service.Build.Network, NetworkMode: service.Build.Network,

121
pkg/compose/build_test.go Normal file
View File

@ -0,0 +1,121 @@
/*
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 (
"testing"
"github.com/compose-spec/compose-go/types"
"gotest.tools/v3/assert"
)
func TestPrepareProjectForBuild(t *testing.T) {
t.Run("build service platform", func(t *testing.T) {
project := types.Project{
Services: []types.ServiceConfig{
{
Name: "test",
Image: "foo",
Build: &types.BuildConfig{
Context: ".",
Platforms: []string{
"linux/amd64",
"linux/arm64",
"alice/32",
},
},
Platform: "alice/32",
},
},
}
s := &composeService{}
err := s.prepareProjectForBuild(&project, nil)
assert.NilError(t, err)
assert.DeepEqual(t, project.Services[0].Build.Platforms, types.StringList{"alice/32"})
})
t.Run("build DOCKER_DEFAULT_PLATFORM", func(t *testing.T) {
project := types.Project{
Environment: map[string]string{
"DOCKER_DEFAULT_PLATFORM": "linux/amd64",
},
Services: []types.ServiceConfig{
{
Name: "test",
Image: "foo",
Build: &types.BuildConfig{
Context: ".",
Platforms: []string{
"linux/amd64",
"linux/arm64",
},
},
},
},
}
s := &composeService{}
err := s.prepareProjectForBuild(&project, nil)
assert.NilError(t, err)
assert.DeepEqual(t, project.Services[0].Build.Platforms, types.StringList{"linux/amd64"})
})
t.Run("skip existing image", func(t *testing.T) {
project := types.Project{
Services: []types.ServiceConfig{
{
Name: "test",
Image: "foo",
Build: &types.BuildConfig{
Context: ".",
},
},
},
}
s := &composeService{}
err := s.prepareProjectForBuild(&project, map[string]string{"foo": "exists"})
assert.NilError(t, err)
assert.Check(t, project.Services[0].Build == nil)
})
t.Run("unsupported build platform", func(t *testing.T) {
project := types.Project{
Environment: map[string]string{
"DOCKER_DEFAULT_PLATFORM": "commodore/64",
},
Services: []types.ServiceConfig{
{
Name: "test",
Image: "foo",
Build: &types.BuildConfig{
Context: ".",
Platforms: []string{
"linux/amd64",
"linux/arm64",
},
},
},
},
}
s := &composeService{}
err := s.prepareProjectForBuild(&project, nil)
assert.Check(t, err != nil)
})
}

View File

@ -27,7 +27,8 @@ import (
"gotest.tools/v3/assert" "gotest.tools/v3/assert"
) )
var project = types.Project{ func createTestProject() *types.Project {
return &types.Project{
Services: []types.ServiceConfig{ Services: []types.ServiceConfig{
{ {
Name: "test1", Name: "test1",
@ -46,6 +47,7 @@ var project = types.Project{
}, },
}, },
} }
}
func TestTraversalWithMultipleParents(t *testing.T) { func TestTraversalWithMultipleParents(t *testing.T) {
dependent := types.ServiceConfig{ dependent := types.ServiceConfig{
@ -97,7 +99,7 @@ func TestInDependencyUpCommandOrder(t *testing.T) {
t.Cleanup(cancel) t.Cleanup(cancel)
var order []string var order []string
err := InDependencyOrder(ctx, &project, func(ctx context.Context, service string) error { err := InDependencyOrder(ctx, createTestProject(), func(ctx context.Context, service string) error {
order = append(order, service) order = append(order, service)
return nil return nil
}) })
@ -110,7 +112,7 @@ func TestInDependencyReverseDownCommandOrder(t *testing.T) {
t.Cleanup(cancel) t.Cleanup(cancel)
var order []string var order []string
err := InReverseDependencyOrder(ctx, &project, func(ctx context.Context, service string) error { err := InReverseDependencyOrder(ctx, createTestProject(), func(ctx context.Context, service string) error {
order = append(order, service) order = append(order, service)
return nil return nil
}) })

View File

@ -78,6 +78,11 @@ func (s *composeService) Watch(ctx context.Context, project *types.Project, serv
needRebuild := make(chan fileMapping) needRebuild := make(chan fileMapping)
needSync := make(chan fileMapping) needSync := make(chan fileMapping)
err := s.prepareProjectForBuild(project, nil)
if err != nil {
return err
}
eg, ctx := errgroup.WithContext(ctx) eg, ctx := errgroup.WithContext(ctx)
eg.Go(func() error { eg.Go(func() error {
clock := clockwork.NewRealClock() clock := clockwork.NewRealClock()

View File

@ -265,7 +265,11 @@ func TestBuildImageDependencies(t *testing.T) {
}) })
t.Run("BuildKit", func(t *testing.T) { t.Run("BuildKit", func(t *testing.T) {
t.Skip("See https://github.com/docker/compose/issues/9232") cli := NewParallelCLI(t, WithEnv(
"DOCKER_BUILDKIT=1",
"COMPOSE_FILE=./fixtures/build-dependencies/compose.yaml",
))
doTest(t, cli)
}) })
} }