interface ContainerOptions {
    cwd: string;
    env: Record<string, string>;
    exposed: string[];
    extra: Record<string, unknown>;
    mapped: Record<string, string>;
    readonly: Record<string, string>;
    remove: boolean;
    writable: Record<string, string>;
}

Properties

cwd: string
env: Record<string, string>
exposed: string[]
extra: Record<string, unknown>
mapped: Record<string, string>
readonly: Record<string, string>
remove: boolean
writable: Record<string, string>

Generated using TypeDoc