implement start and stop for containers

This commit is contained in:
2016-06-16 04:45:22 +02:00
parent 188c7af749
commit 4eae29cec9
3 changed files with 48 additions and 4 deletions

View File

@ -2,11 +2,16 @@ import "typings-global";
export declare class Dockersock {
sockPath: string;
constructor(pathArg?: string);
auth(userArg: string, passArg: string): any;
listContainers(): any;
listContainersDetailed(): any;
listContainersRunning(): any;
listContainersStopped(): any;
listImages(): any;
getContainerId(): void;
startContainer(containerNameArg: any): any;
stopContainer(): any;
clean(): any;
getChange(): void;
request(methodArg: string, routeArg: string, dataArg?: {}): any;
}

File diff suppressed because one or more lines are too long