Container Args
data class ContainerArgs(val blockExternalNetwork: Output<Boolean>? = null, val commands: Output<List<String>>? = null, val entrypoint: Output<String>? = null, val imageUri: Output<String>? = null, val options: Output<String>? = null, val password: Output<String>? = null, val username: Output<String>? = null, val volumes: Output<List<String>>? = null) : ConvertibleToJava<ContainerArgs>
Container runnable.
Constructors
Link copied to clipboard
constructor(blockExternalNetwork: Output<Boolean>? = null, commands: Output<List<String>>? = null, entrypoint: Output<String>? = null, imageUri: Output<String>? = null, options: Output<String>? = null, password: Output<String>? = null, username: Output<String>? = null, volumes: Output<List<String>>? = null)
Properties
Link copied to clipboard
If set to true, external network access to and from container will be blocked, containers that are with block_external_network as true can still communicate with each other, network cannot be specified in the container.options
field.
Link copied to clipboard
Overrides the ENTRYPOINT
specified in the container.