mirror of
https://github.com/containers/podman.git
synced 2025-12-11 01:11:30 +08:00
Bumps [github.com/containers/image/v5](https://github.com/containers/image) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/containers/image/releases) - [Commits](https://github.com/containers/image/compare/v5.0.0...v5.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
13 lines
726 B
Go
13 lines
726 B
Go
package spec
|
|
|
|
const (
|
|
// MediaTypeLayerEnc is MIME type used for encrypted layers.
|
|
MediaTypeLayerEnc = "application/vnd.oci.image.layer.v1.tar+encrypted"
|
|
// MediaTypeLayerGzipEnc is MIME type used for encrypted compressed layers.
|
|
MediaTypeLayerGzipEnc = "application/vnd.oci.image.layer.v1.tar+gzip+encrypted"
|
|
// MediaTypeLayerNonDistributableEnc is MIME type used for non distributable encrypted layers.
|
|
MediaTypeLayerNonDistributableEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+encrypted"
|
|
// MediaTypeLayerGzipEnc is MIME type used for non distributable encrypted compressed layers.
|
|
MediaTypeLayerNonDistributableGzipEnc = "application/vnd.oci.image.layer.nondistributable.v1.tar+gzip+encrypted"
|
|
)
|