LinuxContainerUser

data class LinuxContainerUser(val gid: Int, val supplementalGroups: List<Int>? = null, val uid: Int)

LinuxContainerUser represents user identity information in Linux containers

Constructors

Link copied to clipboard
constructor(gid: Int, supplementalGroups: List<Int>? = null, uid: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val gid: Int

GID is the primary gid initially attached to the first process in the container

Link copied to clipboard

SupplementalGroups are the supplemental groups initially attached to the first process in the container

Link copied to clipboard
val uid: Int

UID is the primary uid initially attached to the first process in the container