From 4dafeb57a50221bb787c08f753a837ff42c65c01 Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Sun, 21 Nov 2021 16:49:54 +0100 Subject: [PATCH] =?UTF-8?q?introduce=20run=20=E2=80=94quiet-pull=20to=20al?= =?UTF-8?q?ign=20with=20up?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nicolas De Loof --- cmd/compose/run.go | 3 +++ pkg/api/api.go | 2 ++ pkg/compose/run.go | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cmd/compose/run.go b/cmd/compose/run.go index cdb8c0dcc..00044d22b 100644 --- a/cmd/compose/run.go +++ b/cmd/compose/run.go @@ -54,6 +54,7 @@ type runOptions struct { servicePorts bool name string noDeps bool + quietPull bool } func (opts runOptions) apply(project *types.Project) error { @@ -153,6 +154,7 @@ func runCommand(p *projectOptions, backend api.Service) *cobra.Command { flags.StringArrayVarP(&opts.publish, "publish", "p", []string{}, "Publish a container's port(s) to the host.") flags.BoolVar(&opts.useAliases, "use-aliases", false, "Use the service's network useAliases in the network(s) the container connects to.") flags.BoolVar(&opts.servicePorts, "service-ports", false, "Run command with the service's ports enabled and mapped to the host.") + flags.BoolVar(&opts.quietPull, "quiet-pull", false, "Pull without printing progress information.") flags.SetNormalizeFunc(normalizeRunFlags) flags.SetInterspersed(false) @@ -215,6 +217,7 @@ func runRun(ctx context.Context, backend api.Service, project *types.Project, op UseNetworkAliases: opts.useAliases, NoDeps: opts.noDeps, Index: 0, + QuietPull: opts.quietPull, } exitCode, err := backend.RunOneOffContainer(ctx, project, runOpts) if exitCode != 0 { diff --git a/pkg/api/api.go b/pkg/api/api.go index 58ed2cc77..8431e2769 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -227,6 +227,8 @@ type RunOptions struct { Privileged bool UseNetworkAliases bool NoDeps bool + // QuietPull makes the pulling process quiet + QuietPull bool // used by exec Index int } diff --git a/pkg/compose/run.go b/pkg/compose/run.go index 191faf4b7..42022300f 100644 --- a/pkg/compose/run.go +++ b/pkg/compose/run.go @@ -156,7 +156,7 @@ func (s *composeService) prepareRun(ctx context.Context, project *types.Project, service.Labels = service.Labels.Add(api.SlugLabel, slug) service.Labels = service.Labels.Add(api.OneoffLabel, "True") - if err := s.ensureImagesExists(ctx, project, false); err != nil { // all dependencies already checked, but might miss service img + if err := s.ensureImagesExists(ctx, project, opts.QuietPull); err != nil { // all dependencies already checked, but might miss service img return "", err } if !opts.NoDeps {