Merge pull request #1041 from gtardif/compose_help

Adding short description to improve help on compose subcommands
This commit is contained in:
Guillaume Tardif 2020-12-10 15:51:47 +01:00 committed by GitHub
commit bb7b47be39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 16 additions and 8 deletions

View File

@ -34,6 +34,7 @@ func buildCommand() *cobra.Command {
opts := buildOptions{}
buildCmd := &cobra.Command{
Use: "build [SERVICE...]",
Short: "Build or rebuild services",
RunE: func(cmd *cobra.Command, args []string) error {
return runBuild(cmd.Context(), opts, args)
},

View File

@ -29,6 +29,7 @@ func downCommand() *cobra.Command {
opts := composeOptions{}
downCmd := &cobra.Command{
Use: "down",
Short: "Stop and remove containers, networks",
RunE: func(cmd *cobra.Command, args []string) error {
return runDown(cmd.Context(), opts)
},

View File

@ -34,6 +34,7 @@ func listCommand() *cobra.Command {
opts := composeOptions{}
lsCmd := &cobra.Command{
Use: "ls",
Short: "List running compose projects",
RunE: func(cmd *cobra.Command, args []string) error {
return runList(cmd.Context(), opts)
},

View File

@ -30,6 +30,7 @@ func logsCommand() *cobra.Command {
opts := composeOptions{}
logsCmd := &cobra.Command{
Use: "logs",
Short: "View output from containers",
RunE: func(cmd *cobra.Command, args []string) error {
return runLogs(cmd.Context(), opts)
},

View File

@ -34,6 +34,7 @@ func psCommand() *cobra.Command {
opts := composeOptions{}
psCmd := &cobra.Command{
Use: "ps",
Short: "List containers",
RunE: func(cmd *cobra.Command, args []string) error {
return runPs(cmd.Context(), opts)
},

View File

@ -34,6 +34,7 @@ func pullCommand() *cobra.Command {
opts := pullOptions{}
pullCmd := &cobra.Command{
Use: "pull [SERVICE...]",
Short: "Pull service images",
RunE: func(cmd *cobra.Command, args []string) error {
return runPull(cmd.Context(), opts, args)
},

View File

@ -34,6 +34,7 @@ func pushCommand() *cobra.Command {
opts := pushOptions{}
pushCmd := &cobra.Command{
Use: "push [SERVICE...]",
Short: "Push service images",
RunE: func(cmd *cobra.Command, args []string) error {
return runPush(cmd.Context(), opts, args)
},

View File

@ -37,6 +37,7 @@ func upCommand(contextType string) *cobra.Command {
opts := composeOptions{}
upCmd := &cobra.Command{
Use: "up [SERVICE...]",
Short: "Create and start containers",
RunE: func(cmd *cobra.Command, args []string) error {
switch contextType {
case store.LocalContextType, store.DefaultContextType: