Merge pull request #29073 from adshmh/28756-print-checkpoint-name-in-checkpoint-create-command

Print checkpoint id when creating a checkpoint
This commit is contained in:
Vincent Demeester 2016-12-06 11:06:29 +01:00 committed by GitHub
commit 7f9ba93914
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,8 @@
package checkpoint
import (
"fmt"
"golang.org/x/net/context"
"github.com/docker/docker/api/types"
@ -51,5 +53,6 @@ func runCreate(dockerCli *command.DockerCli, opts createOptions) error {
return err
}
fmt.Fprintf(dockerCli.Out(), "%s\n", opts.checkpoint)
return nil
}