diff options
Diffstat (limited to 'cmd/podman/commit.go')
-rw-r--r-- | cmd/podman/commit.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/commit.go b/cmd/podman/commit.go index 6da24fa92..8d3c124bf 100644 --- a/cmd/podman/commit.go +++ b/cmd/podman/commit.go @@ -6,6 +6,7 @@ import ( "os" "strings" + "github.com/containers/image/manifest" "github.com/pkg/errors" "github.com/projectatomic/buildah" "github.com/projectatomic/libpod/cmd/podman/libpodruntime" @@ -83,7 +84,7 @@ func commitCmd(c *cli.Context) error { return errors.Errorf("messages are only compatible with the docker image format (-f docker)") } case "docker": - mimeType = buildah.Dockerv2ImageManifest + mimeType = manifest.DockerV2Schema2MediaType default: return errors.Errorf("unrecognized image format %q", c.String("format")) } |