command

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

Parameters

value

The command that's passed to the container. This parameter maps to `Cmd` in the docker container create command and the `COMMAND` parameter to docker run. If there are multiple arguments, each argument is a separated string in the array.


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


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

Parameters

values

The command that's passed to the container. This parameter maps to `Cmd` in the docker container create command and the `COMMAND` parameter to docker run. If there are multiple arguments, each argument is a separated string in the array.