command

@JvmName(name = "idgsatphfncnigxl")
suspend fun command(value: Output<List<String>>)
@JvmName(name = "fmhbsmpdnivuswmi")
suspend fun command(value: List<String>?)

Parameters

value

The command that's passed to the container. This parameter maps to `Cmd` in the Create a container section of the Docker Remote API and the `COMMAND` parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd. If there are multiple arguments, each argument is a separated string in the array.


@JvmName(name = "iwllukxlfqcndjxv")
suspend fun command(vararg values: Output<String>)


@JvmName(name = "rqaeneewvdgvsjda")
suspend fun command(values: List<Output<String>>)
@JvmName(name = "yosinsrtttcbfbio")
suspend fun command(vararg values: String)

Parameters

values

The command that's passed to the container. This parameter maps to `Cmd` in the Create a container section of the Docker Remote API and the `COMMAND` parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd. If there are multiple arguments, each argument is a separated string in the array.