Install on macOS
Show me where to click — Settings → Resources → Network
-
Open Settings — the ⚙️ gear icon in Docker Desktop’s top bar.
-
Go to Resources → Network.
-
Tick Enable host networking, then Apply & restart.

1. Install Docker Desktop + ADB
Section titled “1. Install Docker Desktop + ADB”You need Docker Desktop (ships with Compose v2) and adb on your PATH.
brew install --cask docker # Docker Desktopbrew install --cask android-platform-tools # adbLaunch Docker Desktop once so the engine starts, then enable Host networking (note above).
- Download Docker Desktop for Mac (pick the Apple silicon or Intel build for your Mac) and install it.
- Download Android Platform Tools,
unzip, and add the
platform-toolsfolder to yourPATH.
Verify both are ready:
docker compose version # Compose v2.xadb version2. Run the stack
Section titled “2. Run the stack”-
Fetch the compose file
Terminal window curl -fsSL https://batazor.github.io/autopilot-page/docker-compose.prod.yml -o docker-compose.prod.yml -
Start ADB and confirm BlueStacks is visible
Terminal window adb start-serveradb devices # BlueStacks should be listed as "device" -
Verify the display profile — must be 720 × 1280 @ 320 DPI, game language English:
Terminal window adb shell wm sizeadb shell wm densitySee Emulator setup for the full list.
-
Pull and start redis + bot + api + web:
Terminal window docker compose -f docker-compose.prod.yml up -d --pull always -
Open the dashboard
Terminal window open http://127.0.0.1:3000/overview
Troubleshooting
Section titled “Troubleshooting”See Troubleshooting for the full list.