Post

Install Docker Windows Engine without Docker Desktop

Install Docker Windows Engine without Docker Desktop

This guide will help you install Docker Windows Engine without using Docker Desktop, which will avoid the need for the Docker Desktop License. Follow these steps:

  1. Download the Latest Version
  2. Extract the Zip File
    • Extract the downloaded zip file to C:/Docker.
  3. Update System Environment Path
    • Add the C:/Docker directory to the System Environment Path to allow easy access to Docker commands from any terminal.
  4. Register Docker as a Service
    • Navigate to C:/Docker and run the following command in admin mode to register Docker as a service:
      1
      
      dockerd --register-service
      
  5. Start the Docker Service
    • Use the following commands to start the Docker service:
      1
      2
      
      Get-Service docker
      Start-Service docker
      
  6. Verify Installation
    • Run the following commands to ensure Docker is installed correctly:
      1
      2
      3
      
      docker --version
      docker info
      docker run hello-world
      
  7. Troubleshoot Network Issues
    • If you encounter network issues, follow these steps:
      • Set the environment variable DOCKER_HOST to tcp://127.0.0.1:2375.
      • Update or add the configuration in C:\ProgramData\docker\config\daemon.json by running the following command:
        1
        
        notepad C:\ProgramData\docker\config\daemon.json
        
      • Add the following content to the daemon.json file:
        1
        2
        3
        
        {
          "hosts": ["tcp://0.0.0.0:2375", "npipe://"]
        }
        
      • Restart the service:
        1
        2
        
        Stop-Service docker
        Start-Service docker
        
This post is licensed under CC BY 4.0 by the author.