DockerImageAssetLocation
The location of the published docker image.
This is where the image can be consumed at runtime.
Initializer
import { DockerImageAssetLocation } from '@alicloud/ros-cdk-core'
const dockerImageAssetLocation: DockerImageAssetLocation = { ... }
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 readonly imageUri: string;
- Type: string
The URI of the image in Aliyun ACR (including a tag).
repositoryNameRequired
public readonly repositoryName: string;
- Type: string
The name of the ACR repository.
imageTagOptional
public readonly imageTag: string;
- Type: string
- Default: the hash of the asset, or the
dockerTagPrefixconcatenated with the asset hash if adockerTagPrefixis specified in the stack synthesizer
The tag of the image in Aliyun ACR.