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. |
ImageUri
Required
public string ImageUri { get; set; }
- Type: string
The URI of the image in Aliyun ACR (including a tag).
RepositoryName
Required
public string RepositoryName { get; set; }
- Type: string
The name of the ACR repository.
ImageTag
Optional
public string ImageTag { get; set; }
- Type: string
- Default: the hash of the asset, or the
dockerTagPrefix
concatenated with the asset hash if adockerTagPrefix
is specified in the stack synthesizer
The tag of the image in Aliyun ACR.