UNPKG

docker-pilot

Version:

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

19 lines 673 B
import { BaseCommand } from './BaseCommand'; import { CommandResult, CommandOptions, CommandContext } from '../types'; export declare class RestartCommand extends BaseCommand { constructor(context: CommandContext); execute(args: string[], _options: CommandOptions): Promise<CommandResult>; /** * Restart services using docker compose restart */ private restartServices; /** * Execute Docker command with proper error handling */ private execDockerCommand; /** * Display restart results with formatting */ private showRestartResults; protected showExamples(): void; } //# sourceMappingURL=RestartCommand.d.ts.map