UNPKG

docker-pilot

Version:

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

27 lines 892 B
import { BaseCommand } from './BaseCommand'; import { CommandResult, CommandOptions, CommandContext } from '../types'; export declare class LogsCommand extends BaseCommand { constructor(context: CommandContext); execute(args: string[], _options: CommandOptions): Promise<CommandResult>; /** * Get real container logs using docker compose logs */ private getContainerLogs; /** * Execute Docker command with streaming support for follow mode */ private execDockerCommandStream; /** * Execute Docker command with proper error handling */ private execDockerCommand; /** * Display container logs with formatting */ private showContainerLogs; /** * Create a summary of logs for interactive menu */ private createLogsSummary; protected showExamples(): void; } //# sourceMappingURL=LogsCommand.d.ts.map