다음을 통해 공유


OciImageManifest type

OCI 이미지 매니페스트(미디어 형식 "application/vnd.oci.image.manifest.v1+json"의 매니페스트)를 나타내는 형식입니다. 자세한 내용은 의 https://github.com/opencontainers/image-spec/blob/main/manifest.md 사양을 참조하세요.

type OciImageManifest = {
  annotations?: OciAnnotations
  artifactType?: string
  config: OciDescriptor
  layers: OciDescriptor[]
  mediaType?: Object
  schemaVersion: 2
}