WorkstationConfigContainer

data class WorkstationConfigContainer(val args: List<String>? = null, val commands: List<String>? = null, val env: Map<String, String>? = null, val image: String? = null, val runAsUser: Int? = null, val workingDir: String? = null)

Constructors

Link copied to clipboard
constructor(args: List<String>? = null, commands: List<String>? = null, env: Map<String, String>? = null, image: String? = null, runAsUser: Int? = null, workingDir: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val args: List<String>? = null

Arguments passed to the entrypoint.

Link copied to clipboard
val commands: List<String>? = null

If set, overrides the default ENTRYPOINT specified by the image.

Link copied to clipboard
val env: Map<String, String>? = null

Environment variables passed to the container. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".

Link copied to clipboard
val image: String? = null

Docker image defining the container. This image must be accessible by the config's service account.

Link copied to clipboard
val runAsUser: Int? = null

If set, overrides the USER specified in the image with the given uid.

Link copied to clipboard
val workingDir: String? = null

If set, overrides the default DIR specified by the image.