A macOS menu bar tool for managing local Docker-based projects. Designed for UI/UX designers and developers who want quick access to Docker commands without the terminal.
- Download the latest
Dockey.dmgfrom releases - Open the DMG and drag
Dockey.appto/Applications - Launch Dockey from Applications (or Spotlight)
- The app will appear in your menu bar with a 🔨 icon
First Launch: macOS may show a security warning. Go to System Preferences → Privacy & Security and click "Open Anyway".
The CLI tool dockey is bundled inside the app. To make it available in your terminal:
# Symlink the bundled CLI to /usr/local/bin
sudo ln -sf /Applications/Dockey.app/Contents/MacOS/dockey-cli /usr/local/bin/dockeyVerify installation:
dockey --help- Click the menu bar icon to see all projects
- Run commands directly from the dropdown
- Access Settings to manage projects, containers, and commands
- Use the Test button in Settings to preview command output
# Projects
dockey project add "MyProject" --root /path/to/project
dockey project list
dockey project rm "MyProject"
# Containers
dockey project container add "MyProject" "mysql" --shell bash
dockey project container list "MyProject"
# Commands
dockey project command add "MyProject" "up" --script "docker compose up -d"
dockey project command add "MyProject" "down" --script "docker compose down"
dockey project command run "MyProject" "up"- Menu bar quick access to all projects
- Run Docker commands with one click
- Settings page for project/container/command management
- Test commands with live console output
- CLI tool for terminal users
- Project status indicators
- Quick navigation to project domains
When you receive a new version:
- Download the new
Dockey.dmg - Quit the running app (Menu Bar → Quit Dockey)
- Replace the app in
/Applications - Relaunch
See DISTRIBUTION.md for packaging and distribution instructions.
# Build CLI
swift build
# Run CLI during development
swift run dockey project list