prepare container creation

This commit is contained in:
2016-06-16 06:43:34 +02:00
parent 16ffe53f30
commit 5cbcba2f1e
3 changed files with 51 additions and 16 deletions

View File

@ -8,10 +8,14 @@ export declare class Dockersock {
listContainersRunning(): any;
listContainersStopped(): any;
listImages(): any;
listImagesDangling(): any;
pullImage(imageLabel: string): void;
createContainer(): any;
getContainerId(): void;
startContainer(containerNameArg: any): any;
stopContainer(): any;
stopContainer(containerNameArg: any): any;
removeContainer(containerNameArg: any): any;
clean(): any;
getChange(): void;
request(methodArg: string, routeArg: string, dataArg?: {}): any;
request(methodArg: string, routeArg: string, queryArg?: string, dataArg?: {}): any;
}

File diff suppressed because one or more lines are too long