AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Colima Docker Setup

skill-stuffbucket-skills-colima-docker-setup · by stuffbucket

Set up Docker, docker compose, and docker buildx on macOS using Colima. Use when Docker Desktop is not available, Colima needs install or config, docker compose v2 plugin is missing, x86_64 emulation via Rosetta is needed on Apple Silicon, or diagnosing socket errors and slow x64 containers.

No reviews yet
0 installs
31 views
0.0% view→install

Install

$ agentstack add skill-stuffbucket-skills-colima-docker-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-stuffbucket-skills-colima-docker-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Colima Docker Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Colima Docker Setup

Set up Docker CLI + compose + buildx on macOS using Colima as the container runtime.

Quick Setup

Run the bundled setup script — it is idempotent:

bash /scripts/setup.sh

This performs all steps: install, plugin symlinks, Colima start, verify.

Individual Steps

bash /scripts/setup.sh install   # brew install colima docker docker-compose docker-buildx
bash /scripts/setup.sh plugins   # symlink compose + buildx as docker CLI plugins
bash /scripts/setup.sh colima    # create and start the default profile
bash /scripts/setup.sh verify    # check everything works
bash /scripts/setup.sh status    # alias for verify
bash /scripts/setup.sh stop      # stop the Colima VM

Configuration via Environment Variables

| Variable | Default | Purpose | | ---------- | --------- | --------- | | COLIMA_CPUS | 4 | VM CPU count | | COLIMA_MEMORY | 8 | VM memory (GiB) | | COLIMA_DISK | 100 | VM disk (GiB) | | COLIMA_PROFILE | default | Colima profile name | | COLIMA_VM_TYPE | vz | VM type (vz or qemu) |

Example with custom resources:

COLIMA_MEMORY=16 COLIMA_CPUS=8 bash /scripts/setup.sh

Colima Default Template

To persist defaults across all future colima start invocations:

mkdir -p ~/.colima/_templates
cp /assets/colima-template.yaml ~/.colima/_templates/default.yaml

Edit ~/.colima/_templates/default.yaml to customize. CLI flags override template values.

Key Facts

  • vz + Rosetta (Apple Virtualization Framework) is required for performant x86_64 containers on ARM64 Macs. Without Rosetta, QEMU emulation is ~10x slower.
  • docker compose (v2 plugin syntax with space) requires the compose binary symlinked into ~/.docker/cli-plugins/. The setup script handles this.
  • DOCKER_HOST should be unix://$HOME/.colima/default/docker.sock — Colima sets this automatically when --activate is used.
  • virtiofs is the fastest mount type with vz. $HOME is mounted writable by default.

Troubleshooting

Read /references/troubleshooting.md for common issues: socket errors, missing compose plugin, slow x64 containers, VM startup failures, disk full, port conflicts.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.