diff --git a/pkg/compose/build_bake.go b/pkg/compose/build_bake.go index c19f15950cd..32e8e920069 100644 --- a/pkg/compose/build_bake.go +++ b/pkg/compose/build_bake.go @@ -130,6 +130,9 @@ type buildStatus struct { func (s *composeService) doBuildBake(ctx context.Context, project *types.Project, serviceToBeBuild types.Services, options api.BuildOptions) (map[string]string, error) { //nolint:gocyclo eg := errgroup.Group{} ch := make(chan *client.SolveStatus) + if options.Progress == progress.ModeAuto { + options.Progress = os.Getenv("BUILDKIT_PROGRESS") + } displayMode := progressui.DisplayMode(options.Progress) out := options.Out if out == nil {