pull.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package compose
  14. import (
  15. "context"
  16. "fmt"
  17. "os"
  18. "github.com/compose-spec/compose-go/types"
  19. "github.com/morikuni/aec"
  20. "github.com/spf13/cobra"
  21. "github.com/docker/compose/v2/pkg/api"
  22. )
  23. type pullOptions struct {
  24. *ProjectOptions
  25. composeOptions
  26. quiet bool
  27. parallel bool
  28. noParallel bool
  29. includeDeps bool
  30. ignorePullFailures bool
  31. noBuildable bool
  32. }
  33. func pullCommand(p *ProjectOptions, backend api.Service) *cobra.Command {
  34. opts := pullOptions{
  35. ProjectOptions: p,
  36. }
  37. cmd := &cobra.Command{
  38. Use: "pull [OPTIONS] [SERVICE...]",
  39. Short: "Pull service images",
  40. PreRunE: Adapt(func(ctx context.Context, args []string) error {
  41. if opts.noParallel {
  42. fmt.Fprint(os.Stderr, aec.Apply("option '--no-parallel' is DEPRECATED and will be ignored.\n", aec.RedF))
  43. }
  44. return nil
  45. }),
  46. RunE: Adapt(func(ctx context.Context, args []string) error {
  47. return runPull(ctx, backend, opts, args)
  48. }),
  49. ValidArgsFunction: completeServiceNames(p),
  50. }
  51. flags := cmd.Flags()
  52. flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Pull without printing progress information.")
  53. cmd.Flags().BoolVar(&opts.includeDeps, "include-deps", false, "Also pull services declared as dependencies.")
  54. cmd.Flags().BoolVar(&opts.parallel, "parallel", true, "DEPRECATED pull multiple images in parallel.")
  55. flags.MarkHidden("parallel") //nolint:errcheck
  56. cmd.Flags().BoolVar(&opts.parallel, "no-parallel", true, "DEPRECATED disable parallel pulling.")
  57. flags.MarkHidden("no-parallel") //nolint:errcheck
  58. cmd.Flags().BoolVar(&opts.ignorePullFailures, "ignore-pull-failures", false, "Pull what it can and ignores images with pull failures.")
  59. cmd.Flags().BoolVar(&opts.noBuildable, "ignore-buildable", false, "Ignore images that can be built.")
  60. return cmd
  61. }
  62. func runPull(ctx context.Context, backend api.Service, opts pullOptions, services []string) error {
  63. project, err := opts.ToProject(services)
  64. if err != nil {
  65. return err
  66. }
  67. if !opts.includeDeps {
  68. err := project.ForServices(services, types.IgnoreDependencies)
  69. if err != nil {
  70. return err
  71. }
  72. }
  73. return backend.Pull(ctx, project, api.PullOptions{
  74. Quiet: opts.quiet,
  75. IgnoreFailures: opts.ignorePullFailures,
  76. IgnoreBuildable: opts.noBuildable,
  77. })
  78. }