summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-01-15 10:27:13 -0600
committerbaude <bbaude@redhat.com>2019-01-15 10:29:24 -0600
commit9a23e285d3ef7d356cb08cd431bcc6ffc7b579ab (patch)
treee4e1be5f91b0c3fcec243a8b1da77c41d2216b38 /cmd
parent077156d45cfea915cc249e92a5a45280e5ed71e1 (diff)
downloadpodman-9a23e285d3ef7d356cb08cd431bcc6ffc7b579ab.tar.gz
podman-9a23e285d3ef7d356cb08cd431bcc6ffc7b579ab.tar.bz2
podman-9a23e285d3ef7d356cb08cd431bcc6ffc7b579ab.zip
add support for podman-remote history
this adds support to get the history for an image and its layers using podman-remote. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/history.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/podman/history.go b/cmd/podman/history.go
index 7c8c619c8..802047071 100644
--- a/cmd/podman/history.go
+++ b/cmd/podman/history.go
@@ -1,15 +1,15 @@
package main
import (
+ "github.com/containers/libpod/libpod/adapter"
"reflect"
"strconv"
"strings"
"time"
"github.com/containers/libpod/cmd/podman/formats"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
"github.com/containers/libpod/libpod/image"
- units "github.com/docker/go-units"
+ "github.com/docker/go-units"
"github.com/pkg/errors"
"github.com/urfave/cli"
)
@@ -72,11 +72,11 @@ func historyCmd(c *cli.Context) error {
return err
}
- runtime, err := libpodruntime.GetRuntime(c)
+ runtime, err := adapter.GetRuntime(c)
if err != nil {
return errors.Wrapf(err, "could not get runtime")
}
- defer runtime.Shutdown(false)
+ defer runtime.Runtime.Shutdown(false)
format := genHistoryFormat(c.String("format"), c.Bool("quiet"))
@@ -88,7 +88,7 @@ func historyCmd(c *cli.Context) error {
return errors.Errorf("podman history takes at most 1 argument")
}
- image, err := runtime.ImageRuntime().NewFromLocal(args[0])
+ image, err := runtime.NewImageFromLocal(args[0])
if err != nil {
return err
}