open class DockerCommandStep : BuildStep
A build step for a generic docker command runner (can run Docker build, push, other...)
See Also
sealed class CommandType : CompoundParam<CommandType> |
DockerCommandStep(init: DockerCommandStep.() -> Unit) DockerCommandStep()
A build step for a generic docker command runner (can run Docker build, push, other...) |
var commandType: CommandType?
Specifies the type of the command, at the moment "build", "push", "other" |
var conditions: BuildStepConditions
Optional collection of build step execution conditions |
|
var enabled: Boolean
Specifies whether the step is enabled, true by default |
|
var executionMode: ExecutionMode
Build step execution mode |
|
var id: String?
Id of the step, if not specified will be generated |
|
var name: String
Build step name |
|
var type: String
Build step type |
fun build(init: Build.() -> Unit = {}): Build
Run "docker build" command |
|
fun other(init: Other.() -> Unit = {}): Other
Run a specified docker command |
|
fun push(init: Push.() -> Unit = {}): Push
Run "docker push" command |
|
open fun validate(consumer: ErrorConsumer): Unit
Validates this object and reports found errors to the provided consumer |
fun clearConditions(): Unit
Deletes all configured build step conditions |
|
fun conditions(init: BuildStepConditions.() -> Unit = {}): Unit
Configures build step conditions |
|
open fun create(): BuildStep
Creates an instance of this build step via reflection using a no argument constructor, used during copying. Throws an error if this class doesn't have a default constructor. Subclasses can override it to create an instance without using a default constructor. |
|
open fun toString(): String |