docker-management

Manage Docker containers, images, volumes, networks, and Compose stacks.

Updated Apr 2, 2026
One-click install
npx skills add https://github.com/JKhyro/HERMES-AGENT --skill docker-management-jkhyro
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: docker-management
Source: https://github.com/JKhyro/HERMES-AGENT/tree/main/optional-skills/devops/docker-management
Command: npx skills add https://github.com/JKhyro/HERMES-AGENT --skill docker-management-jkhyro

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It removes the friction of daily Docker operations by giving clear guidance for running, inspecting, debugging, and cleaning up containers and related resources without memorizing every CLI detail.

Core Features & Use Cases

  • Container lifecycle: Start, stop, restart, remove, and inspect containers with confidence.
  • Images, volumes, and networks: Build, pull, tag, prune, and manage the supporting Docker infrastructure.
  • Compose workflows: Bring multi-service stacks up or down, validate configuration, and troubleshoot service-to-service issues.
  • Safety-aware cleanup: Check disk usage first and avoid destructive actions unless they are explicitly confirmed.
  • Use case: A service crashes after deployment, so you inspect logs, verify ports, review resource usage, and choose the safest recovery command.

Quick Start

Use the docker-management skill to diagnose the failing container, summarize the likely cause from its logs, and tell me the safest command to recover it.

Frequently Asked Questions about docker-management

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I troubleshoot a crashed Docker container after deployment?

To troubleshoot a crashed Docker container, you inspect its logs, verify port mappings, review resource usage, and execute the safest recovery command based on the diagnostic summary. This approach identifies the likely cause before attempting a restart or removal.

What is the best way to clean up Docker images and volumes without losing active data?

The safest way to clean up Docker images and volumes is to check disk usage first and validate destructive pruning actions before execution. This safety-aware cleanup prevents accidental data loss by requiring explicit confirmation for removals.

How do I manage multi-service Docker Compose stacks and resolve service-to-service issues?

You manage Docker Compose stacks by bringing multi-service configurations up or down, validating the setup, and troubleshooting service-to-service communication issues. This workflow ensures stable lifecycle operations across complex container environments.

Do I need the Docker CLI installed to manage containers and Compose workflows?

Yes, you need the Docker CLI installed and accessible because Docker container management, image builds, and Compose workflows require direct CLI access to execute lifecycle operations, inspect logs, and perform resource cleanup.

Why should I check disk usage before pruning Docker resources?

You should check disk usage before pruning Docker resources to validate the necessity of destructive actions and avoid removing active infrastructure. This precaution ensures cleanup only removes confirmed unused images, volumes, and networks.