compose.go 304 B

1234567891011121314151617181920
  1. package compose
  2. import (
  3. "github.com/spf13/cobra"
  4. )
  5. // Command returns the compose command with its child commands
  6. func Command() *cobra.Command {
  7. command := &cobra.Command{
  8. Short: "Docker Compose",
  9. Use: "compose",
  10. }
  11. command.AddCommand(
  12. upCommand(),
  13. downCommand(),
  14. )
  15. return command
  16. }