/** * docker command - Manage Docker containers */ export interface DockerOptions { file?: string; detach?: boolean; } export declare function dockerUp(options?: DockerOptions): Promise; export declare function dockerDown(options?: DockerOptions): Promise; export declare function dockerStatus(options?: DockerOptions): Promise; export declare function dockerLogs(options?: DockerOptions & { follow?: boolean; service?: string; }): Promise; export declare function dockerRestart(options?: DockerOptions): Promise; export declare function dockerExec(service: string, command: string[], options?: DockerOptions): Promise; //# sourceMappingURL=docker.d.ts.map