What problem does it solve?
This Skill enables running Docker commands inside containerized environments by orchestrating a Docker daemon and coordinating container lifecycles.
Core Features & Use Cases
- In-container Docker daemon management: Start and manage a Docker daemon within a container to run containers and manage images.
- Container lifecycle operations: Create, start, stop, and remove containers from inside the containerized environment.
- Use Case: In CI pipelines and sandboxed environments, use this Skill to run build and test cycles without touching host Docker.
Quick Start
Start the in-container Docker workflow by starting the daemon in the background, awaiting initialization, and running a hello-world container to verify.
- Start daemon: sudo dockerd > /tmp/docker.log 2>&1 &
- Wait for initialization: sleep 5
- Run verification: sudo docker run hello-world