Merge pull request #85 from ulyssessouza/add-run-output

WIP - Missing e2e - Print container name when successful
This commit is contained in:
Djordje Lukic 2020-05-13 14:30:58 +02:00 committed by GitHub
commit 2d14bfeb38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -29,6 +29,7 @@ package run
import (
"context"
"fmt"
"strings"
"github.com/docker/docker/pkg/namesgenerator"
@ -45,7 +46,11 @@ func Command() *cobra.Command {
Short: "Run a container",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
return runRun(cmd.Context(), args[0], opts)
if err := runRun(cmd.Context(), args[0], opts); err != nil {
return err
}
fmt.Println(opts.name)
return nil
},
}