Skip to content

Set Up Your Environment

Your container runtime must have access to at least:

ResourceMinimum
CPU4 cores
RAM10 GiB
Storage40 GiB

  1. Install Docker Desktop

    Download and install Docker Desktop for Mac. Start it and confirm it’s running before continuing.

  2. Install Homebrew

    Terminal window
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. Install k3d

    k3d runs a lightweight Kubernetes cluster inside Docker.

    Terminal window
    brew install k3d

Confirm your tools are installed and working:

Terminal window
docker info # Docker is running
k3d version # k3d is installed

Both commands should return version output without errors.