1

I've installed docker on bash on ubuntu on windows 10:

sudo apt-get install -y docker

but when i try to use it:

docker -v

it gives me the following error:

The program 'docker' is currently not installed. You can install it by typing:
sudo apt-get install docker

When I try to reinstall it, I get this message:

docker is already the newest version.

UPDATE:

It seems that one of the pre-requisites for installing docker this way: https://docs.docker.com/engine/installation/linux/ubuntulinux/ which works on my dedicated ubuntu machine is:

your kernel must be 3.10 at minimum

Whereas ubuntu on win 10 is 3.4

Is there a way to update this?

Angad Dubey
  • 5,067
  • 7
  • 30
  • 51

1 Answers1

-1

Run it as root :

sudo docker -v
Issam El-atif
  • 2,366
  • 2
  • 17
  • 22