From 38a1b2f16d210525eafcc845e7a9cce598207113 Mon Sep 17 00:00:00 2001 From: baude Date: Thu, 15 Mar 2018 10:06:49 -0500 Subject: Image library stage 4 - create and commit Migrate the podman create and commit subcommandis to leverage the images library. I also had to migrate the cmd/ portions of run and rmi. Signed-off-by: baude Closes: #498 Approved by: mheon --- cmd/podman/run.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'cmd/podman/run.go') diff --git a/cmd/podman/run.go b/cmd/podman/run.go index 7b840a387..f1e11f839 100644 --- a/cmd/podman/run.go +++ b/cmd/podman/run.go @@ -7,8 +7,10 @@ import ( "github.com/pkg/errors" "github.com/projectatomic/libpod/libpod" + "github.com/projectatomic/libpod/libpod/image" "github.com/sirupsen/logrus" "github.com/urfave/cli" + "os" ) var runDescription = "Runs a command in a new container from the given image" @@ -49,12 +51,15 @@ func runCmd(c *cli.Context) error { return errors.Errorf("image name or ID is required") } - imageName, _, data, err := imageData(c, runtime, c.Args()[0]) + rtc := runtime.GetConfig() + newImage, err := runtime.ImageRuntime().New(c.Args()[0], rtc.SignaturePolicyPath, "", os.Stderr, nil, image.SigningOptions{}) + + data, err := libpod.GetImageData(newImage) if err != nil { return err } - createConfig, err := parseCreateOpts(c, runtime, imageName, data) + createConfig, err := parseCreateOpts(c, runtime, newImage.Names()[0], data) if err != nil { return err } -- cgit v1.2.3-54-g00ecf