Docker Installation

Docker Installation

 Docker Installation


We have prepared tutorials for advanced docker installation. Use links to get access for docker installation.

Install Docker on CentOS, RedHat & Fedora
Install Docker on Ubuntu & Debian

To install docker from default repositories follow this tutorial.

#1. Requirements

Docker required a 64-bit operating system with Kernel >= 3.10. Older versions of Kernel have some missing requirements to run all features of Docker.

$ uname -r

4.4.0-92-generic

#2. Install Docker

Docker is available under default repositories of the Latest Linux systems. You simply install them using package management tools.

First, you need to remove the current installed old version of the docker or docker-engine.

## For Debian & Ubuntu systems
$ sudo apt-get remove docker docker-engine docker.io

## For CentOS & Redhat systems
$ sudo yum remove docker docker-engine docker.io

Now install the latest version of docker

## For Debian & Ubuntu systems
$ sudo apt-get update 
$ sudo apt-get install docker-engine   

## For CentOS & Redhat systems
$ sudo yum install docker-engine
Reactions

Post a Comment

0 Comments

close