jetbrains.buildServer.configs.kotlin.v10.buildFeatures / DockerSupportFeature

DockerSupportFeature

open class DockerSupportFeature : BuildFeature

Docker Support feature tracks pushed images and adds a dedicated tab with information about them.

See Also

dockerSupport

Types

LoginToRegistry

sealed class LoginToRegistry : CompoundParam

Constructors

<init>

DockerSupportFeature(init: DockerSupportFeature.() -> Unit = {}, base: DockerSupportFeature? = null)

Properties

cleanupPushedImages

var cleanupPushedImages: Boolean?

On server clean-up, delete pushed docker images from registry.

loginToRegistry

var loginToRegistry: LoginToRegistry?

Log in to the Docker registry with the given ID before the build.

Inherited Properties

enabled

var enabled: Boolean

Specifies whether the feature is enabled

id

var id: String?

Build feature id, if not specified will be generated

type

var type: String

Build feature type

Functions

on

fun on(init: On.() -> Unit = {}): On