Install Docker on Ubuntu Trusty 14.04 is fairly straightforward:
1 2 3
| $ curl -sSL https://get.docker.com/ | sh $ sudo usermod -aG docker ${USER} $ exit
|
Log out, then log back in to verify the installation by running a sample container:
1
| $ docker run hello-world
|
Done!