Skip to content

This guide covers installing the prerequisites for Frona development on macOS. Once done, continue to the Project Setup page.

Install prerequisites

bash
brew install mise colima docker docker-compose docker-buildx

Configure Docker CLI plugins

Add the CLI plugins path to your Docker config:

json
{
  "cliPluginsExtraDirs": ["/opt/homebrew/lib/docker/cli-plugins"]
}

Start Colima

bash
colima start --cpu 4 --memory 8 --disk 60
brew services start colima
docker context use colima

We recommend at least 4 CPUs, 8 GB memory, and 60 GB disk. Starting Colima as a Homebrew service ensures it launches automatically on boot.

Next step

Continue to Project Setup to clone and run Frona.