AssetManifestDockerImageDestination
The destination for a docker image asset, when it is given to the AssetManifestBuilder.
Initializer
import com.aliyun.ros.cdk.core.AssetManifestDockerImageDestination;
AssetManifestDockerImageDestination.builder()
.repositoryName(java.lang.String)
// .dockerTagPrefix(java.lang.String)
.build();
Properties
Name | Type | Description |
---|---|---|
repositoryName |
java.lang.String |
Repository name where the docker image asset should be written. |
dockerTagPrefix |
java.lang.String |
Prefix to add to the asset hash to make the Docker image tag. |
repositoryName
Required
public java.lang.String getRepositoryName();
- Type: java.lang.String
Repository name where the docker image asset should be written.
dockerTagPrefix
Optional
public java.lang.String getDockerTagPrefix();
- Type: java.lang.String
- Default: ''
Prefix to add to the asset hash to make the Docker image tag.