light-runner - v0.9.0
    Preparing search index...

    Interface RunRequest

    interface RunRequest {
        command?: string;
        detached?: boolean;
        dir?: string;
        env?: Record<string, string>;
        extract?: ExtractSpec[];
        image: string;
        input?: unknown;
        network?: string;
        onLog?: (line: string) => void;
        signal?: AbortSignal;
        timeout?: number;
        workdir?: string;
    }
    Index

    Properties

    command?: string
    detached?: boolean
    dir?: string
    env?: Record<string, string>
    extract?: ExtractSpec[]
    image: string
    input?: unknown
    network?: string
    onLog?: (line: string) => void
    signal?: AbortSignal
    timeout?: number
    workdir?: string