A C++ TUI made for managing and creating docker containers
  • C++ 81.8%
  • Shell 14.5%
  • CMake 3.7%
Find a file
mrkmntal 2be5aa17cc
Some checks are pending
Build & Upload tux-dock / build (push) Waiting to run
DEVLOG update for 0.1.2-beta
2026-08-22 17:30:38 -04:00
.forgejo/workflows fix: preseed -y to automate CMake install with no prompts 2026-02-25 13:31:27 -05:00
src Code cleanup, finish of changes for 0.1.1 2026-08-15 18:12:21 -04:00
tests Code cleanup, finish of changes for 0.1.1 2026-08-15 18:12:21 -04:00
.gitignore Changing to FTXUI for a more robust and user friendly TUI 2026-02-25 12:14:34 -05:00
CMakeLists.txt Stabilize the docker smoke testing scripts and HTML 3.2 webview 2026-08-14 17:16:46 -04:00
compile.sh Fix minor formatting bug in the HTML 3.2 web view, we do not need to substitute the forward slash here 2026-08-19 11:39:44 -04:00
DEVLOG.md DEVLOG update for 0.1.2-beta 2026-08-22 17:30:38 -04:00
LICENSE C++ Rewrite! 2025-10-18 23:38:32 +00:00
main.cpp Add handlers for blocking CTRL+Z in busy operations, 0.1.2-beta complete 2026-08-22 17:22:16 -04:00
option13_script.sh Refactor Option 13: Streamline bash script to Docker image conversion workflow 2025-11-01 20:00:21 -04:00
README.md Add handlers for blocking CTRL+Z in busy operations, 0.1.2-beta complete 2026-08-22 17:22:16 -04:00

Tux-Dock

A lightweight C++ Docker TUI

Tux-Dock is a modern C++17 Docker terminal frontend built with FTXUI. It gives you a guided, keyboard-first TUI for common Docker operations without memorizing long CLI flags.


Features

  • Interactive Docker workflows through a single-screen TUI with modal steps.
  • Picker-based selection (arrow keys + Enter) for containers/images instead of numeric menus.
  • Busy-operation modals with a spinner and input blocking while Docker work completes.
  • Rich container display with state and forwarded ports.
  • Interactive shell handoff with clean terminal clear before/after shell transitions.
  • Image operations: pull/list/delete with curated quick picks and custom image support.
  • Docker Engine API access through /var/run/docker.sock for structured list and lifecycle operations.
  • Direct fork/exec process execution for CLI-backed streaming and interactive commands.
  • Persistent container listings that retain exited containers.
  • Robust stop handling with state polling, timeout retry, and idempotent stop responses.
  • About screen in-app with project/version/repository info.

Build Requirements

  • C++17 or newer compiler (e.g. g++, clang++)
  • CMake 3.16+
  • Docker Engine installed and running

Build & Run

# Clone the repo
git clone https://mentalnet.xyz/forgejo/markmental/tuxdock.git
cd tuxdock

# Configure, build, and test (FTXUI and nlohmann/json are fetched automatically)
./compile.sh

# Run it (requires Docker permissions)
sudo ./build/tux-dock

# Build without running tests
./compile.sh --no-test

# Run tests and serve an HTML 3.2 report on port 8095
./compile.sh --web-test-view

# Override the report server port
./compile.sh --web-test-view 9000

The web report is generated under /tmp and includes exact CTest output, test summaries, Docker integration output, and a text rendition of the TUI flow. It requires nc, netcat, or Nmap's ncat; press Ctrl-C to stop the server. The default port is 8095; pass a port after --web-test-view to override it. --web-test-view --no-test is invalid. Normal test runs include a Docker integration test using debian:forky, so Docker must be available. On systems with 1 GB or less of available memory, the script automatically uses a smaller build configuration and a single build job.


Menu Overview

Current TUI actions:

  1. Pull Docker Image
  2. Create Container
  3. List All Containers
  4. List All Images
  5. Start Detached Container Session
  6. Delete Docker Image
  7. Stop Container
  8. Remove Container
  9. Attach Shell to Running Container
  10. Run Detached Command in Container
  11. About Tux-Dock
  12. Exit

Design Overview

Tux-Dock is organized around the TUI, Docker manager, Engine API client, and direct process runner:

Responsibilities

  • DockerEngineClient

    • Talks directly to Docker over the Unix socket.
    • Parses HTTP responses, including chunked and bodyless responses.
  • ProcessRunner

    • Executes direct argument vectors using fork and exec.
    • Supports captured output and inherited terminal I/O.
  • DockerManager

    • Maps Engine API JSON into application data.
    • Performs lifecycle operations and robust stop-state confirmation.
    • Preserves cached state when refreshes fail.
  • TuxDockApp

    • Renders the FTXUI interface.
    • Manages modal flows (input/select/confirm/message).
    • Handles modal flows, busy operations, blocked input, and interactive shell transitions.
    • Coordinates end-to-end user flows by calling DockerManager methods.

This split keeps Docker behavior isolated while making UI behavior easier to extend.


Testing

cmake -S . -B build -DBUILD_TESTING=ON
cmake --build build
ctest --test-dir build --output-on-failure

compile.sh runs these tests by default. Pass --no-test to skip them.


About / Version


License

MIT License — free to use, modify, and share.