ContainerVolume

data class ContainerVolume(val containerPath: String? = null, val fromContainer: String? = null, val hostPath: String? = null, val readOnly: Boolean? = null, val volumeName: String? = null)

Constructors

Link copied to clipboard
constructor(containerPath: String? = null, fromContainer: String? = null, hostPath: String? = null, readOnly: Boolean? = null, volumeName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val containerPath: String? = null

The path in the container where the volume will be mounted.

Link copied to clipboard
val fromContainer: String? = null

The container where the volume is coming from.

Link copied to clipboard
val hostPath: String? = null

The path on the host where the volume is coming from.

Link copied to clipboard
val readOnly: Boolean? = null

If true, this volume will be readonly. Defaults to false.

Link copied to clipboard
val volumeName: String? = null

The name of the docker volume which should be mounted.