UNPKG

docker-pilot

Version:

A powerful, scalable Docker CLI library for managing containerized applications of any size

17 lines 584 B
/** * Down Command - Stop all services or specific service */ import { CommandResult, CommandOptions, CommandContext } from '../types'; import { BaseCommand } from './BaseCommand'; export declare class DownCommand extends BaseCommand { constructor(context: CommandContext); execute(args: string[], _options: CommandOptions): Promise<CommandResult>; protected showExamples(): void; private stopServices; private execDockerCommand; /** * Display stop results with formatting */ private showStopResults; } //# sourceMappingURL=DownCommand.d.ts.map