diff --git a/vendor/github.com/containers/image/storage/storage_image.go b/vendor/github.com/containers/image/storage/storage_image.go index 1d7bc164..7879aeca 100644 --- a/vendor/github.com/containers/image/storage/storage_image.go +++ b/vendor/github.com/containers/image/storage/storage_image.go @@ -416,8 +416,15 @@ func (s *storageImageDestination) Commit() error { return nil } +var manifestMIMETypes = []string{ + // TODO(runcom): we'll add OCI as part of another PR here + manifest.DockerV2Schema2MediaType, + manifest.DockerV2Schema1SignedMediaType, + manifest.DockerV2Schema1MediaType, +} + func (s *storageImageDestination) SupportedManifestMIMETypes() []string { - return nil + return manifestMIMETypes } // PutManifest writes manifest to the destination.