August 2017
Intermediate to advanced
332 pages
9h 16m
English
https://docs.docker.com/engine/installation/linux/ubuntulinux/ contains a guide on how to install Docker on an Ubuntu machine.
In the case of Ubuntu 16.04, I've executed the following commands:
$ sudo apt-get update$ sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 9DC858229FC7DD38854AE2D88D81803C0EBFCD88$ sudo apt-add-repository 'deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial main stable'$ sudo apt-get update$ sudo apt-get install -y docker-ce
After all operations are completed, Docker should be installed. However, at the moment, the only user allowed to use Docker commands is root. This means that the sudo keyword must precede every Docker command.
We can enable other users ...
Read now
Unlock full access