compose.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. "github.com/compose-spec/compose-go/cli"
  17. "github.com/spf13/pflag"
  18. "github.com/spf13/cobra"
  19. "github.com/docker/compose-cli/api/client"
  20. "github.com/docker/compose-cli/errdefs"
  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. Quiet bool
  31. }
  32. func addComposeCommonFlags(f *pflag.FlagSet, opts *composeOptions) {
  33. f.StringVarP(&opts.Name, "project-name", "p", "", "Project name")
  34. f.StringVar(&opts.Format, "format", "", "Format the output. Values: [pretty | json]. (Default: pretty)")
  35. f.BoolVarP(&opts.Quiet, "quiet", "q", false, "Only display IDs")
  36. }
  37. func (o *composeOptions) toProjectName() (string, error) {
  38. if o.Name != "" {
  39. return o.Name, nil
  40. }
  41. options, err := o.toProjectOptions()
  42. if err != nil {
  43. return "", err
  44. }
  45. project, err := cli.ProjectFromOptions(options)
  46. if err != nil {
  47. return "", err
  48. }
  49. return project.Name, nil
  50. }
  51. func (o *composeOptions) toProjectOptions() (*cli.ProjectOptions, error) {
  52. return cli.NewProjectOptions(o.ConfigPaths,
  53. cli.WithOsEnv,
  54. cli.WithEnv(o.Environment),
  55. cli.WithWorkingDirectory(o.WorkingDir),
  56. cli.WithName(o.Name))
  57. }
  58. // Command returns the compose command with its child commands
  59. func Command(contextType string) *cobra.Command {
  60. command := &cobra.Command{
  61. Short: "Docker Compose",
  62. Use: "compose",
  63. PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
  64. return checkComposeSupport(cmd.Context())
  65. },
  66. }
  67. command.AddCommand(
  68. upCommand(contextType),
  69. downCommand(),
  70. psCommand(),
  71. listCommand(),
  72. logsCommand(),
  73. convertCommand(),
  74. )
  75. return command
  76. }
  77. func checkComposeSupport(ctx context.Context) error {
  78. _, err := client.New(ctx)
  79. if errdefs.IsNotFoundError(err) {
  80. return errdefs.ErrNotImplemented
  81. }
  82. return err
  83. }