@cto.ai/ops
Version:
💻 CTO.ai - The CLI built for Teams 🚀
23 lines (22 loc) • 503 B
TypeScript
import Docker from '@cto.ai/dockerode';
import { Config, OpCommand } from '.';
export type RunCommandArgs = {
args: {
[key: string]: string;
};
flags: {
build?: boolean;
batch?: boolean;
help?: boolean;
nocache?: boolean;
};
opParams: string[];
};
export type RunPipeline = {
config: Config;
isPublished: boolean;
op: OpCommand;
options: Docker.ContainerCreateOptions;
parsedArgs: RunCommandArgs;
nocache?: boolean;
};