UNPKG

@cto.ai/ops

Version:

💻 CTO.ai Ops - The CLI built for Teams 🚀

20 lines (19 loc) • 433 B
import Docker from 'dockerode'; import { Config, OpCommand } from '.'; export declare type RunCommandArgs = { args: { nameOrPath: string; }; flags: { build?: boolean; help?: boolean; }; opParams: string[]; }; export declare type RunPipeline = { config: Config; isPublished: boolean; op: OpCommand; options: Docker.ContainerCreateOptions; parsedArgs: RunCommandArgs; };