Files
archy/install-docker-desktop.sh
Dorian 0d073fa89e Add comprehensive installation and setup documentation
- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
2026-01-27 17:18:21 +00:00

38 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
# Install Docker Desktop for macOS
echo "============================================"
echo "Installing Docker Desktop"
echo "============================================"
echo ""
# Make sure Homebrew is in PATH
eval "$(/opt/homebrew/bin/brew shellenv)"
echo "Installing Docker Desktop (this may take a few minutes)..."
echo "You may be prompted for your password."
echo ""
brew install --cask docker
echo ""
echo "============================================"
echo "Docker Desktop Installation Complete!"
echo "============================================"
echo ""
echo "Next steps:"
echo ""
echo "1. Open Docker Desktop:"
echo " - Open Finder > Applications > Docker"
echo " - Or press Cmd+Space and type 'Docker'"
echo ""
echo "2. Wait for Docker to start (whale icon in menu bar)"
echo ""
echo "3. Verify Docker is running:"
echo " docker --version"
echo " docker ps"
echo ""
echo "Note: Podman is already installed and working!"
echo "You can use either Docker or Podman for containers."
echo ""