Claude-skill-registry colima
Use when Docker commands fail with "Cannot connect to Docker daemon", when starting/stopping container environments, or when managing multiple Docker contexts on macOS - provides Colima lifecycle management, profile handling, SSH commands, and troubleshooting
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/colima" ~/.claude/skills/majiayu000-claude-skill-registry-colima && rm -rf "$T"
manifest:
skills/data/colima/SKILL.mdsource content
Colima
Overview
Colima provides container runtimes (Docker, Containerd) on macOS with minimal setup. It runs a Linux VM and exposes Docker via contexts.
Use this skill when:
- Docker commands fail ("Cannot connect to Docker daemon")
- Starting/stopping container runtime on macOS
- Managing multiple Docker profiles/contexts
- Troubleshooting container environment issues
- Need SSH agent forwarding for Docker builds
Not for: Docker Compose, Kubernetes clusters, or Linux environments.
Quick Reference
| Operation | Command |
|---|---|
| Start | or |
| Start with SSH agent | |
| Stop | or |
| Status | |
| List profiles | |
| SSH into VM | or |
| SSH with chained commands | |
| Get socket path | |
Docker Context Basics
Colima creates Docker contexts per profile:
- Profile
→ contextdefaultcolima - Profile
→ contextworkcolima-work
# Switch context (global - affects all terminals) docker context use colima-work # Override per-session export DOCKER_CONTEXT=colima-work # Override per-command docker --context colima-work ps
For details, see
references/docker-contexts.md.
Common Issues
Docker daemon not connecting?
- is it running?colima status
- right context selected?docker context list- See
for morereferences/troubleshooting.md
Need more VM resources?
colima stop && colima start --cpu 4 --memory 8
"Broken" status after restart?
colima stop --force && colima start
References
- SSH command syntax, chaining, escapingreferences/ssh-commands.md
- Context switching, DOCKER_HOST, socket pathsreferences/docker-contexts.md
- Creating, configuring, deleting profilesreferences/profile-management.md
- Common issues and solutionsreferences/troubleshooting.md
- Flags, VM types, resource configurationreferences/common-options.md
Upstream Documentation
Local copies of official Colima docs (from github.com/abiosoft/colima):
- Official README with features and usagereferences/colima-upstream/README.md
- Official FAQ and troubleshootingreferences/colima-upstream/FAQ.md
- Installation optionsreferences/colima-upstream/INSTALL.md