Docker - Unable to find docker package

I am trying to install docker in Ubuntu 16.04. I follow this link to install dockers. I end up with Unable to find package doc file

My current kernel version is 4.4.0-38 - the general version of Ubuntu is 16.04

+7
source share
3 answers

The main solution that resolved most problems in the docker is to install the 64-bit version of ubuntu. I worked with 32 bit (i686). Hope it helps!

+1
source

The docker.io package is already inside Ubuntu called docker.io [1], so it’s easy

 sudo apt-get install docker.io 

But if you follow this link that you gave and follow steps 7, 8, 9, then your installation will know about the package on the docker-engine repository and also find docker-engine .

Your call. I am running a version of Ubuntu (currently 0.11.2 on Ubuntu 16.04) on some machines, and the other with Docker on others (since I was interested in learning about some of the features of 0.12). Both will work just fine.

[1] Since docker used for docking icons for the application to run on the desktop.

+21
source

I encountered the same problem on AWS-EC2 with a Ubuntu-18.04 server ...

Launching the APT-Get update does the trick for me ....

Once the update completes normally, run apt-get install docker.io

0
source

All Articles