DockerExecutorArgs

data class DockerExecutorArgs(val cmd: Output<String>, val imageName: Output<String>) : ConvertibleToJava<DockerExecutorArgs>

The Docker execuctor specification.

Constructors

Link copied to clipboard
fun DockerExecutorArgs(cmd: Output<String>, imageName: Output<String>)

Functions

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

Properties

Link copied to clipboard
val cmd: Output<String>

The command or newline delimited script to run. The command string will be executed within a bash shell. If the command exits with a non-zero exit code, output parameter de-localization will be skipped and the pipeline operation's error field will be populated. Maximum command string length is 16384.

Link copied to clipboard
val imageName: Output<String>

Image name from either Docker Hub or Google Container Registry. Users that run pipelines must have READ access to the image.