Docker Operations Skill
Manage Docker containers for local testing, debugging, and deployment operations.
When to Use This Skill
- •Building and running containers
- •Debugging container issues
- •Managing images and registries
- •Inspecting container state
- •Checking resource usage
Steps
- •List containers —
docker ps -a - •View logs —
docker logs {container-id} - •Inspect container —
docker inspect {container-id} - •Check resources —
docker stats - •Execute commands —
docker exec -it {container-id} bash