org.osbuild.skopeo-index
Fetch container manifest list from a registry using skopeo
The manifest is stored as a single file indexed by its content hash.
Buildhost commands used: skopeo.
Schema 1
{
"additionalProperties": false,
"definitions": {
"item": {
"description": "The manifest list to fetch",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"sha256:[0-9a-f]{64}": {
"type": "object",
"additionalProperties": false,
"required": [
"image"
],
"properties": {
"image": {
"type": "object",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the image (including registry)."
},
"tls-verify": {
"type": "boolean",
"description": "Require https (default true)."
},
"containers-transport": {
"type": "string",
"enum": [
"docker",
"containers-storage"
],
"description": "The containers transport from which to copy the container",
"default": "docker"
},
"storage-location": {
"type": "string",
"description": "The location of the local containers storage"
}
}
}
}
}
}
}
},
"properties": {
"items": {
"$ref": "#/definitions/item"
},
"digests": {
"$ref": "#/definitions/item"
}
},
"oneOf": [
{
"required": [
"items"
]
},
{
"required": [
"digests"
]
}
]
}
Schema 2
{}