implement .createContainer()

This commit is contained in:
2016-06-17 02:38:00 +02:00
parent c356042075
commit 4da7f5194a
3 changed files with 62 additions and 13 deletions

View File

@ -10,13 +10,13 @@ export declare class Dockersock {
listImages(): any;
listImagesDangling(): any;
pullImage(imageLabel: string): any;
createContainer(imageNameArg: any, pullFirst?: boolean): any;
createContainer(optionsArg: any, pullFirstArg?: boolean): any;
getContainerId(): void;
startContainer(containerNameArg: any): any;
stopContainer(containerNameArg: any): any;
removeContainer(containerNameArg: any): any;
clean(): any;
getChange(): void;
callOnChange(cb: Function): 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