From openhands-skills
Run Docker commands within a container environment, including starting the Docker daemon and managing containers. Use when building, running, or managing Docker containers and images.
npx claudepluginhub openhands/extensionsThis skill uses the workspace's default tool permissions.
Please check if docker is already installed. If so, to start Docker in a container environment:
Provides essential Docker commands for container lifecycle management, image building and operations, debugging, inspection, and Docker Compose basics.
Guides Docker container creation, image building with Dockerfiles, docker-compose orchestration, management commands (run/build/exec/logs), and troubleshooting networks, volumes, permissions.
Manages Docker container basics operations with step-by-step guidance, best practices, code, and configurations. Useful for foundational DevOps containerization tasks.
Share bugs, ideas, or general feedback.
Please check if docker is already installed. If so, to start Docker in a container environment:
# Start Docker daemon in the background
sudo dockerd > /tmp/docker.log 2>&1 &
# Wait for Docker to initialize
sleep 5
To verify Docker is working correctly, run the hello-world container:
sudo docker run hello-world