Cloud API Overview > @adpt/cloud > docker > DockerBuildOptions
docker.DockerBuildOptions interface
Options for performing Docker image builds.
Signature:
export interface DockerBuildOptions extends DockerGlobalOptions
Properties
Property | Type | Description |
---|---|---|
buildArgs | Environment | |
deployID | string | If set, will add a Docker LABEL with the DeployID. |
forceRm | boolean | |
imageName | string | |
imageTag | string | |
prevUniqueTag | string | |
stdin | string | |
uniqueTag | boolean | If true and the newly built image ID does not match the image ID for prevUniqueTag (or prevUniqeTag is not set), a new unique nameTag is generated for this image (from imageName and imageTag). If true and the newly built image ID does match the image ID for prevUniqueTag, then prevUniqueTag is returned as nameTag. If false, imageName and imageTag are used without modification. |