compose.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. "fmt"
  16. "github.com/compose-spec/compose-go/cli"
  17. "github.com/compose-spec/compose-go/types"
  18. "github.com/spf13/cobra"
  19. "github.com/spf13/pflag"
  20. "github.com/docker/compose-cli/context/store"
  21. )
  22. type composeOptions struct {
  23. Name string
  24. DomainName string
  25. WorkingDir string
  26. ConfigPaths []string
  27. Environment []string
  28. Format string
  29. Detach bool
  30. Build bool
  31. Quiet bool
  32. }
  33. func addComposeCommonFlags(f *pflag.FlagSet, opts *composeOptions) {
  34. f.StringVarP(&opts.Name, "project-name", "p", "", "Project name")
  35. f.StringVar(&opts.Format, "format", "", "Format the output. Values: [pretty | json]. (Default: pretty)")
  36. f.BoolVarP(&opts.Quiet, "quiet", "q", false, "Only display IDs")
  37. }
  38. func (o *composeOptions) toProjectName() (string, error) {
  39. if o.Name != "" {
  40. return o.Name, nil
  41. }
  42. options, err := o.toProjectOptions()
  43. if err != nil {
  44. return "", err
  45. }
  46. project, err := cli.ProjectFromOptions(options)
  47. if err != nil {
  48. return "", err
  49. }
  50. return project.Name, nil
  51. }
  52. func (o *composeOptions) toProjectOptions() (*cli.ProjectOptions, error) {
  53. return cli.NewProjectOptions(o.ConfigPaths,
  54. cli.WithOsEnv,
  55. cli.WithEnv(o.Environment),
  56. cli.WithWorkingDirectory(o.WorkingDir),
  57. cli.WithName(o.Name))
  58. }
  59. // Command returns the compose command with its child commands
  60. func Command(contextType string) *cobra.Command {
  61. command := &cobra.Command{
  62. Short: "Docker Compose",
  63. Use: "compose",
  64. PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
  65. if contextType == store.DefaultContextType || contextType == store.LocalContextType {
  66. fmt.Println("The new 'docker compose' command is currently experimental. To provide feedback or request new features please open issues at https://github.com/docker/compose-cli")
  67. }
  68. return nil
  69. },
  70. }
  71. command.AddCommand(
  72. upCommand(contextType),
  73. downCommand(),
  74. psCommand(),
  75. listCommand(),
  76. logsCommand(),
  77. convertCommand(),
  78. runCommand(),
  79. )
  80. if contextType == store.LocalContextType || contextType == store.DefaultContextType {
  81. command.AddCommand(
  82. buildCommand(),
  83. pushCommand(),
  84. pullCommand(),
  85. )
  86. }
  87. command.Flags().SetInterspersed(false)
  88. return command
  89. }
  90. //
  91. func filter(project *types.Project, services []string) error {
  92. if len(services) == 0 {
  93. // All services
  94. return nil
  95. }
  96. names := map[string]bool{}
  97. err := addServiceNames(project, services, names)
  98. if err != nil {
  99. return err
  100. }
  101. var filtered types.Services
  102. for _, s := range project.Services {
  103. if _, ok := names[s.Name]; ok {
  104. filtered = append(filtered, s)
  105. }
  106. }
  107. project.Services = filtered
  108. return nil
  109. }
  110. func addServiceNames(project *types.Project, services []string, names map[string]bool) error {
  111. for _, name := range services {
  112. names[name] = true
  113. service, err := project.GetService(name)
  114. if err != nil {
  115. return err
  116. }
  117. err = addServiceNames(project, service.GetDependencies(), names)
  118. if err != nil {
  119. return err
  120. }
  121. }
  122. return nil
  123. }