macOS Installation¶
Docker Desktop is used for Stackvo installation on macOS. This guide detailedly explains Docker Desktop installation, system settings, and Stackvo configuration on both Intel and Apple Silicon (M1/M2/M3) Mac computers. Easy installation options with Homebrew are also available.
Checked System Requirements?
Check the System Requirements page before starting the installation.
Docker Desktop Installation¶
1. Downloading Docker Desktop¶
2. Installing Docker Desktop¶
- Open the DMG file
- Drag Docker.app to Applications
- Start Docker from Applications folder
- It will ask for admin password on first launch
First Launch
Docker Desktop may take a few minutes on first launch.
3. Docker Desktop Settings¶
After Docker Desktop opens:
Settings (⚙️) → Resources
| Resource | Minimum | Recommended |
|---|---|---|
| CPU | 2 cores | 4 cores |
| Memory | 4 GB | 8 GB |
| Disk | 20 GB | 50 GB |
Click on Apply & Restart button.
4. Docker Verification¶
Installation with Homebrew (Recommended)¶
# If Homebrew is not installed:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Docker Desktop + Required tools
brew install --cask docker
brew install git jq curl
# Start Docker Desktop
open -a Docker
Stackvo Installation¶
After Docker Desktop installation is complete, follow the Quick Start page to install Stackvo.
Summary:
# Clone repository
git clone https://github.com/stackvo/stackvo.git
cd stackvo
# Configuration
cp .env.example .env
# Start
./stackvo.sh generate
./stackvo.sh up
Installation Verification¶
In your browser:
- Stackvo Dashboard: https://stackvo.loc
- Traefik Dashboard: http://traefik.stackvo.loc
Installation Completed!
You can now proceed to the Quick Start page to create your first project.