Saturday, August 4, 2018

phpMyPassion

Process to Install Docker on Ubuntu 16.04

Process To Install Docker || PhpMyPassion

Docker :-

Docker is a container management service. The keywords of Docker are develop, ship and run anywhere. The whole idea of Docker is for developers to easily develop applications, ship them into containers which can then be deployed at anyplace.

Docker has two flavors :

  • Community Edition (CE)
  • Enterprise Edition (EE)

So if you don't know which one should be install, just pick up The Community Edition (CE) flavor and install as below 

Docker Installation :-

Follow the step by step process -

Step#1 :- Set up the docker repository

$ sudo apt-get update
$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

Step#2 :- Install Docker CE
$ sudo apt-get update
$ sudo apt-get install docker-ce

Step#3 :- Verify the installation
$ sudo docker run hello-denny

So above process will help you to install Docker on Linux environment. If you found any difficultly, do follow the Ubuntu installation instruction list all you need in detail.  

Know More About Docker:

      What is docker and uses ? 



About Author -

Hi, I am Anil.

Welcome to my eponymous blog! I am passionate about web programming. Here you will find a huge information on web development, web design, PHP, Python, Digital Marketing and Latest technology.

Subscribe to this Blog via Email :

Note: Only a member of this blog may post a comment.