PoolStartTaskContainer

data class PoolStartTaskContainer(val imageName: String, val registries: List<PoolStartTaskContainerRegistry>? = null, val runOptions: String? = null, val workingDirectory: String? = null)

Constructors

Link copied to clipboard
constructor(imageName: String, registries: List<PoolStartTaskContainerRegistry>? = null, runOptions: String? = null, workingDirectory: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The image to use to create the container in which the task will run. This is the full image reference, as would be specified to "docker pull". If no tag is provided as part of the image name, the tag ":latest" is used as a default.

Link copied to clipboard

The container_registries block defined as below.

Link copied to clipboard
val runOptions: String? = null

Additional options to the container create command. These additional options are supplied as arguments to the "docker create" command, in addition to those controlled by the Batch Service.

Link copied to clipboard

A flag to indicate where the container task working directory is. Possible values are TaskWorkingDirectory and ContainerImageDefault.