• Parameters

    • callback: Function = ...

    Returns {
        id: string;
        attach(): Promise<{
            pipe(): void;
            setEncoding(): void;
        }>;
        inspect(): Promise<{
            Args: any;
            Image: string;
            Name: any;
            NetworkSettings: {
                IPAddress: any;
            };
            Path: any;
            State: {
                Running: any;
            };
        }>;
        logs(options, cb): Promise<{
            on: (() => void);
        }>;
        start(): Promise<void>;
        wait(): Promise<{
            Error: any;
            StatusCode: number;
        }>;
    }

    • id: string
    • attach:function
      • Returns Promise<{
            pipe(): void;
            setEncoding(): void;
        }>

    • inspect:function
      • Returns Promise<{
            Args: any;
            Image: string;
            Name: any;
            NetworkSettings: {
                IPAddress: any;
            };
            Path: any;
            State: {
                Running: any;
            };
        }>

    • logs:function
      • Parameters

        • options: any
        • cb: Function

        Returns Promise<{
            on: (() => void);
        }>

    • start:function
    • wait:function
      • Returns Promise<{
            Error: any;
            StatusCode: number;
        }>

Generated using TypeDoc