Skip to content

DockerImageAssetLocation

The location of the published docker image.

This is where the image can be consumed at runtime.

Initializer

import ros_cdk_core
ros_cdk_core.DockerImageAssetLocation(
  image_uri: str,
  repository_name: str,
  image_tag: str = None
)

Properties

Name Type Description
image_uri str The URI of the image in Aliyun ACR (including a tag).
repository_name str The name of the ACR repository.
image_tag str The tag of the image in Aliyun ACR.

image_uriRequired

image_uri: str
  • Type: str

The URI of the image in Aliyun ACR (including a tag).


repository_nameRequired

repository_name: str
  • Type: str

The name of the ACR repository.


image_tagOptional

image_tag: str
  • Type: str
  • Default: the hash of the asset, or the dockerTagPrefix concatenated with the asset hash if a dockerTagPrefix is specified in the stack synthesizer

The tag of the image in Aliyun ACR.