Skip to content

DockerImageAssetLocation

The location of the published docker image.

This is where the image can be consumed at runtime.

Initializer

using AlibabaCloud.SDK.ROS.CDK.Core;
new DockerImageAssetLocation {
    string ImageUri,
    string RepositoryName,
    string ImageTag = null
};

Properties

Name Type Description
ImageUri string The URI of the image in Aliyun ACR (including a tag).
RepositoryName string The name of the ACR repository.
ImageTag string The tag of the image in Aliyun ACR.

ImageUriRequired

public string ImageUri { get; set; }
  • Type: string

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


RepositoryNameRequired

public string RepositoryName { get; set; }
  • Type: string

The name of the ACR repository.


ImageTagOptional

public string ImageTag { get; set; }
  • Type: string
  • 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.