TagArgs

data class TagArgs(val sourceImage: Output<String>? = null, val tagTriggers: Output<List<String>>? = null, val targetImage: Output<String>? = null) : ConvertibleToJava<TagArgs>

Creates a docker tag. It has the exact same functionality as the docker tag command. Deleting the resource will neither delete the source nor target images. The source image must exist on the machine running the docker daemon.

Constructors

Link copied to clipboard
constructor(sourceImage: Output<String>? = null, tagTriggers: Output<List<String>>? = null, targetImage: Output<String>? = null)

Properties

Link copied to clipboard
val sourceImage: Output<String>? = null

Name of the source image.

Link copied to clipboard
val tagTriggers: Output<List<String>>? = null

List of values which cause the tag to be (re)created. This is useful for triggering a new tag when the source image changes.

Link copied to clipboard
val targetImage: Output<String>? = null

Name of the target image.

Functions

Link copied to clipboard
open override fun toJava(): TagArgs