DockerImageDestination
Where to publish docker images.
Initializer
import { DockerImageDestination } from '@alicloud/ros-cdk-assembly-schema'
const dockerImageDestination: DockerImageDestination = { ... }
Properties
Name | Type | Description |
---|---|---|
region |
string |
The region where this asset will need to be published. |
imageTag |
string |
Tag of the image to publish. |
repositoryName |
string |
Name of the ECR repository to publish to. |
region
Optional
public readonly region: string;
- Type: string
- Default: Current region
The region where this asset will need to be published.
imageTag
Required
public readonly imageTag: string;
- Type: string
Tag of the image to publish.
repositoryName
Required
public readonly repositoryName: string;
- Type: string
Name of the ECR repository to publish to.