Friday, June 26, 2020

Docker on 32-bit Windows

Docker is a set of platform as a service (PaaS)that uses OS-level virtualization to deliver software in packages called containers.
Containers are isolated from one another and bundle their own software, libraries and configuration files; they can communicate with each other through well-defined channels.
Docker allows applications to use the same Linux kernel as the system that they're running on and only requires applications be shipped with things not already running on the host computer.
For some reason, Docker really doesn’t want people to run on 32-bit.
Below are the steps.
  • Download choco from below link:https://chocolatey.org/docs/installation
  • Once installed,issue below steps.
  • choco install docker-machine -y
  • docker-machine create --driver virtualbox default
  • docker-machine env | Invoke-Expression
That’s it! You can verify that it’s working correctly by running “docker version”:
PS C:\Windows\system32> docker version
Client:
 Version: 1.12.1
 API version: 1.24
 Go version: go1.6.3
 Git commit: 23cf638
 Built: Thu July 18 17:52:38 2021
 OS/Arch: windows/386

No comments:

Post a Comment

ES12 new Features