podmanv2 save image

add ability to save an image for podman v2

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2020-03-30 12:59:05 -05:00
parent a89d62ac3a
commit 837aad724f
10 changed files with 216 additions and 16 deletions

View File

@ -26,3 +26,10 @@ type InfoData struct {
// VolumeDriverLocal is the "local" volume driver. It is managed by libpod
// itself.
const VolumeDriverLocal = "local"
const (
OCIManifestDir = "oci-dir"
OCIArchive = "oci-archive"
V2s2ManifestDir = "docker-dir"
V2s2Archive = "docker-archive"
)