implement pullImage()

This commit is contained in:
2016-06-16 08:47:21 +02:00
parent 5cbcba2f1e
commit 51bf5cfd72
5 changed files with 69 additions and 9 deletions

View File

@ -9,8 +9,8 @@ export declare class Dockersock {
listContainersStopped(): any;
listImages(): any;
listImagesDangling(): any;
pullImage(imageLabel: string): void;
createContainer(): any;
pullImage(imageLabel: string): any;
createContainer(imageNameArg: any, pullFirst?: boolean): any;
getContainerId(): void;
startContainer(containerNameArg: any): any;
stopContainer(containerNameArg: any): any;
@ -18,4 +18,5 @@ export declare class Dockersock {
clean(): any;
getChange(): void;
request(methodArg: string, routeArg: string, queryArg?: string, dataArg?: {}): any;
requestStream(methodArg: any, routeArg: any, endArg?: boolean): any;
}

File diff suppressed because one or more lines are too long