docker

Manage Docker containers and images with pre-defined commands.

166|4|Updated Mar 25, 2026
One-click install
npx skills add https://github.com/gebruder/wirken --skill docker-gebruder
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: docker
Source: https://github.com/gebruder/wirken/tree/main/skills/docker
Command: npx skills add https://github.com/gebruder/wirken --skill docker-gebruder

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines Docker container and image management, simplifying the deployment and maintenance of containerized applications.

Core Features & Use Cases

  • Container Management: List, run, stop, remove, and inspect Docker containers.
  • Image Management: List, pull, build, and remove Docker images.
  • Compose: Manage multi-container Docker applications using Docker Compose.
  • Cleanup: Prune stopped containers and unused images to free up disk space.
  • Use Case: Quickly deploy a web application by running a Docker container with a single command.

Quick Start

Run a new Docker container with the image 'nginx' and map port 8080 to 80.

Frequently Asked Questions about docker

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

FAQPage Schema
How do I manage Docker containers and images for application deployment?

You can manage Docker containers and images by executing pre-defined commands to list, run, stop, remove, and inspect them. This approach streamlines the deployment and maintenance of containerized applications through direct container lifecycle operations.

Can I use Docker Compose to manage multi-container applications?

Yes, Docker Compose is supported to manage multi-container Docker applications. You can orchestrate and maintain complex, multi-service deployments using the integrated compose commands alongside standard container and image operations.

What is the best way to clean up stopped Docker containers and unused images?

The best way to clean up stopped Docker containers and unused images is using the prune functionality. This frees up disk space by removing inactive containers and dangling images that are no longer needed for deployment.

Do I need Docker installed to run container lifecycle operations?

Yes, you need Docker installed to execute container lifecycle operations. The Skill manages containers and images through pre-defined commands that require a functional Docker environment to interact with the containerization engine.

How do I quickly deploy a web application by running a Docker container?

To quickly deploy a web application, you run a Docker container with a specified image and map the necessary ports, such as mapping port 8080 to 80 for an nginx image. This single command deploys the application instantly.

How do I build and pull Docker images for containerized applications?

You can build and pull Docker images using dedicated image management commands. This allows you to fetch existing images from registries or create custom images from build files for your containerized applications.