Is it possible to install Docker container in Windows -32 bit systems?
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
https://labs.play-with-docker.com/
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
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.