Package version:

Container definitions for the sessions of the session pool.

interface SessionContainer {
    args?: string[];
    command?: string[];
    env?: EnvironmentVar[];
    image?: string;
    name?: string;
    resources?: SessionContainerResources;
}

Properties

args?: string[]

Container start command arguments.

command?: string[]

Container start command.

Container environment variables.

image?: string

Container image tag.

name?: string

Custom container name.

Container resource requirements.