ContainerResponse

data class ContainerResponse(val args: List<String>, val command: List<String>, val env: Map<String, String>, val image: String, val runAsUser: Int, val workingDir: String)

A Docker container.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Arguments passed to the entrypoint.

Link copied to clipboard

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

Link copied to clipboard

Environment variables passed to the container's entrypoint.

Link copied to clipboard

Docker image defining the container. This image must be accessible by the service account specified in the workstation configuration.

Link copied to clipboard

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

Link copied to clipboard

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