ProcessConfig

interface ProcessConfig {
    arguments?: string[];
    entrypoint?: string;
    privileged?: boolean;
    tty?: boolean;
    user?: string;
}

Properties

arguments?: string[]
entrypoint?: string
privileged?: boolean
tty?: boolean
user?: string