diff options
author | baude <bbaude@redhat.com> | 2019-01-15 14:31:03 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-01-15 14:50:30 -0600 |
commit | 341f91da480bbf337dfb13107389307835b1f0c3 (patch) | |
tree | c1ace140bfd9cfdbae370404f27159748dc2c851 /cmd/podman/images.go | |
parent | 1b2f75298d98f59fac73a63599cdca3478bef835 (diff) | |
download | podman-341f91da480bbf337dfb13107389307835b1f0c3.tar.gz podman-341f91da480bbf337dfb13107389307835b1f0c3.tar.bz2 podman-341f91da480bbf337dfb13107389307835b1f0c3.zip |
Collaberative podman-remote container exists
Began frameout of container super structs for adapted methods. This allows for the use
of container exists.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/images.go')
-rw-r--r-- | cmd/podman/images.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/podman/images.go b/cmd/podman/images.go index 2b4187a9a..7f2fb7ae0 100644 --- a/cmd/podman/images.go +++ b/cmd/podman/images.go @@ -2,14 +2,15 @@ package main import ( "context" - "github.com/containers/libpod/cmd/podman/imagefilters" - "github.com/containers/libpod/libpod/adapter" "reflect" "sort" "strings" "time" "unicode" + "github.com/containers/libpod/cmd/podman/imagefilters" + "github.com/containers/libpod/libpod/adapter" + "github.com/containers/libpod/cmd/podman/formats" "github.com/containers/libpod/libpod/image" "github.com/docker/go-units" |