I have Windows 10 home so I am not able to install docker for windows
version. Upon downloading and installing docker toolbox on windows and installing docker on wls bash by running the following
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
I get this error on running docker images:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
on checking service docker status - it says it is not running
I know that we need to check the enable expose daemon on tcp://localhost:2375 without tls
but we can't access the settings GUI on docker toolbox.
Is there any other way to enable this option?