Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.29 KB

File metadata and controls

50 lines (39 loc) · 1.29 KB

Docker Installation Guide for Windows

Install Docker Desktop for Windows

  1. Download Docker Desktop

  2. System Requirements

    • Windows 10 64-bit: Pro, Enterprise, or Education (Build 15063 or later)
    • Windows 11 64-bit: Home or Pro
    • WSL 2 feature enabled
    • Virtualization enabled in BIOS
  3. Enable WSL 2

    # Run in PowerShell as Administrator
    dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
    dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
  4. Restart your computer

  5. Install WSL 2 Linux kernel

  6. Set WSL 2 as default

    wsl --set-default-version 2
  7. Install Docker Desktop

    • Run the downloaded installer
    • Follow the setup wizard
    • Enable "Use WSL 2 based engine"
  8. Verify Installation

    docker --version
    docker-compose --version

After Installation

Once Docker is installed, you can run:

python start_system.py