compose.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. )
  79. if contextType == store.LocalContextType || contextType == store.DefaultContextType {
  80. command.AddCommand(
  81. buildCommand(),
  82. pushCommand(),
  83. pullCommand(),
  84. )
  85. }
  86. return command
  87. }
  88. //
  89. func filter(project *types.Project, services []string) error {
  90. if len(services) == 0 {
  91. // All services
  92. return nil
  93. }
  94. names := map[string]bool{}
  95. err := addServiceNames(project, services, names)
  96. if err != nil {
  97. return err
  98. }
  99. var filtered types.Services
  100. for _, s := range project.Services {
  101. if _, ok := names[s.Name]; ok {
  102. filtered = append(filtered, s)
  103. }
  104. }
  105. project.Services = filtered
  106. return nil
  107. }
  108. func addServiceNames(project *types.Project, services []string, names map[string]bool) error {
  109. for _, name := range services {
  110. names[name] = true
  111. service, err := project.GetService(name)
  112. if err != nil {
  113. return err
  114. }
  115. err = addServiceNames(project, service.GetDependencies(), names)
  116. if err != nil {
  117. return err
  118. }
  119. }
  120. return nil
  121. }