Skip to content

ContainerImage

Represents a container image reference used by Container Apps (including tag/digest in the name).

Labels: :ContainerImage

Properties:

  • name - Full image name (including registry prefix and tag/digest)

Relationships

Incoming

  • ContainerRegistryCONTAINS_IMAGEContainerImage - Registry that hosts the image reference

Outgoing

  • ContainerImageHAS_ENVVAREnvVar - Environment variables defined for the image in a Container App template

Examples

// List images and their registries
MATCH (acr:ContainerRegistry)-[:CONTAINS_IMAGE]->(img:ContainerImage)
RETURN acr.loginServer, img.name