dprs 0.1.14

dprs (Docker PRocesS viewer ) is a terminal user interface for managing Docker containers and monitoring their logs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Main module file for the DPRS (Docker Process Management TUI) package.
// This file re-exports core modules for Docker container management:
// - app: Application state and user actions
// - display: UI rendering and components
// - docker_log_watcher: Container log monitoring functionality
// These modules work together to create terminal-based tools for
// Docker container management and log monitoring.

mod app;
mod display;
mod docker_log_watcher;

// Copyright (c) 2025 Durable Programming, LLC. All rights reserved.