Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to install Docker container in Windows -32 bit systems?

Tags:

docker

32-bit

I am getting error as Docker needs 64bit configuration, is there any way where i can install docker in 32 bit systems. It's a 32 bit i3 processor having windows 7 machine.

like image 991
Amrita Sahoo Avatar asked Feb 05 '18 10:02

Amrita Sahoo


2 Answers

As per the document of docker, it says that you can install it only on 64 bit machine. But there is another solution if you don't have a 64 bit machine. Just use the below url to play with docker (it's official site) it works like a charm

Docker play

Edit 1: Please note that this is only for practise purpose, Once your session is over your work will be lost.

Edit 2: I have found a very interesting site to practise docker kodekloud

like image 137
Ashish Burnwal Avatar answered Oct 10 '22 12:10

Ashish Burnwal


The first step to getting this whole setup to work is installing Oracle’s VirtualBox on the host system. Once the installation is complete, installing docker-machine is as simple as running the following in an Administrative PowerShell session:

choco install docker-machine -y
docker-machine create --driver virtualbox default
docker-machine env | Invoke-Expression

For more details You can follow this blog.

like image 42
Shiv Kumar Avatar answered Oct 10 '22 12:10

Shiv Kumar