Image#
- pydantic model controller.models.v1.prepuller.Image#
A single Docker image that is available or prepulled.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "Image", "description": "A single Docker image that is available or prepulled.", "type": "object", "properties": { "reference": { "description": "Reference of image, which includes the registry host name, the normally-two-part image name within that registry, and the tag or hash of the specific version of that image.", "examples": [ "lighthouse.ceres/library/sketchbook:latest_daily" ], "title": "Docker reference of image", "type": "string" }, "tag": { "description": "Tag portion of the image reference", "examples": [ "w_2023_04" ], "title": "Image tag", "type": "string" }, "name": { "description": "Tag of the image formatted for humans", "examples": [ "Latest Daily (Daily 2077_10_23)" ], "title": "Human-readable tag", "type": "string" }, "digest": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "Full digest of image if known", "examples": [ "sha256:e693782192ecef4f7846ad2b21b1574682e700747f94c5a256b5731331a2eec2" ], "title": "Digest of image" } }, "required": [ "reference", "tag", "name" ] }
- field digest: str | None = None#
Full digest of image if known
- field name: str [Required]#
Tag of the image formatted for humans
- field reference: str [Required]#
Reference of image, which includes the registry host name, the normally-two-part image name within that registry, and the tag or hash of the specific version of that image.
- field tag: str [Required]#
Tag portion of the image reference