Agent SkillsAgent Skills
jackspace

docker-helper

@jackspace/docker-helper
jackspace
12
4 forks
Updated 4/1/2026
View on GitHub

Expert helper for Docker containers, Docker Compose, and container optimization

Installation

$npx agent-skills-cli install @jackspace/docker-helper
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathskills/docker-helper/SKILL.md.backup
Branchmaster
Scoped Name@jackspace/docker-helper

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

npx agent-skills-cli list

Skill Instructions


name: docker-helper description: Expert helper for Docker containers, Docker Compose, and container optimization

Docker-helper

Instructions

When helping with Docker tasks:

  1. Check running containers: docker ps -a
  2. View logs: docker logs -f <container>
  3. Inspect container: docker inspect <container>
  4. Execute commands: docker exec -it <container> /bin/bash
  • Use multi-stage builds to reduce image size
  • Order Dockerfile commands by frequency of change
  • Use .dockerignore to exclude unnecessary files
  • Avoid running as root; create non-privileged users
  • Use health checks in docker-compose
  • Networking: Check bridge networks and port mappings
  • Volumes: Verify volume mounts and permissions
  • Build cache: Use --no-cache when needed
  • Resource limits: Set memory/CPU limits appropriately
  • Use version 3+ syntax
  • Leverage environment files (.env)
  • Use depends_on with health checks
  • Implement restart policies

Examples

Add examples of how to use this skill here.

Notes

  • This skill was auto-generated
  • Edit this file to customize behavior