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:
- Download the Latest Version
- Visit Docker Windows Engine to download the latest version.
- Extract the Zip File
- Extract the downloaded zip file to
C:/Docker
.
- Extract the downloaded zip file to
- Update System Environment Path
- Add the
C:/Docker
directory to the System Environment Path to allow easy access to Docker commands from any terminal.
- Add the
- 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
- Navigate to
- Start the Docker Service
- Use the following commands to start the Docker service:
1 2
Get-Service docker Start-Service docker
- Use the following commands to start the Docker service:
- Verify Installation
- Run the following commands to ensure Docker is installed correctly:
1 2 3
docker --version docker info docker run hello-world
- Run the following commands to ensure Docker is installed correctly:
- Troubleshoot Network Issues
- If you encounter network issues, follow these steps:
- Set the environment variable
DOCKER_HOST
totcp://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
- Set the environment variable
- If you encounter network issues, follow these steps:
This post is licensed under CC BY 4.0 by the author.