Docker - Introduction
Docker is an open source platform for developers & sysadmins to build, ship and run distributed applications; whether on laptops, VM's or cloud.
Steps to Install Docker on Ubuntu 14.04
I have seen people struggling to install the latest version of Docker on Ubuntu 14.04. Therefore I have written to the point steps to install Docker on Ubuntu 14.04!
Step 1: Add docker repository key to apt-key for package verification
sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -"
Step 2: Add the docker repository to your list of repositories
sudo sh -c "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
Step 3: Install docker with an apt-get combo
sudo apt-get update
sudo apt-get install lxc-docker
Step 4: Verify installation
To verify the installation run following command to print the version of installed Docker
sudo docker --version
Enjoy using docker! We love docker and use it daily; so, if you have any questions please shoot over to us!
Comments