How to Install Docker on Debian 8 “Jessie” Linux systems
In this article, I’ll show you how to install Docker on Debian 8 Linux system. This is your first step to get started with Docker engine on Debian 8. I’ll use a minimal installation of Debian 8 “Jessie” 64bit to install Docker on it, of course the following installation steps are valid for all Debian 8 installation types “Server without Gui, Server with Gui, minimal, etc..”.
On this machine we will install Docker engine, allowing you to run a docker image (container) within docker engine.
Introduction to Docker.
Docker is an open-source tool that makes creating & managing Linux containers(LXC) easy. Containers are like lightweight VMs which can be started & stopped in milliseconds. Dockers help the system administrators & coders to develop their application in a container and can further scale up to 1000 of nodes. Working with Docker containers adds many benefits for developers: better separation of application and the server configuration.
The main difference between container and VM(Virtual machine) is that dockers provide process based isolation , whereas VM provides full isolation of resources. Virtual machine takes a minute to start where as container can be started in a second or less than a second. Container uses the Kernel of host OS , whereas VM uses the separate Kernel. Container uses less disk space and memory than VM.
Prerequisites
Docker requires a 64-bit OS and version 3.10 or higher of the Linux kernel. So, we need to check these two requirements against our Debian 8 server.
Hints:
1. You must be the root user to run the following steps and do not use sudo
command.
2. If you used sudo command, some of the following commands will give errors.
To be a root user, run the following command:
$ sudo su -
To check your current kernel version and OS architecture, run the following command:
# uname -r
3.16.0-4-amd64
Perfect, our server is has the prerequisites for installing Docker. Let’s start our steps for installing Docker “You Must be root”.
Hints: 1. If you want normal user to use docker, you need to add this normal user to the docker group. 2. By adding a user to the docker group, you'll have a full privileges on different docker commands, See the following optional step.
Step 4: Running Docker with Normal User Privileges “Optional”
You need to add your normal user to the docker group created by default when we installed the Docker packages. Here’s I’ll add user “msemari” to docker group:
# usermod -aG docker msemari
Now, logout and login again using this user “your normal user” and enjoy playing with Docker.
Extra Steps: Upgrading and Removing Docker from your System
Here’s I give you two extra points for upgrading your Docker engine to the latest version and to completely remove Docker engine from your Jessie Linux.
- Upgrade Docker
To install the latest version of Docker with apt-get
:
# apt-get upgrade docker-engine
- Uninstall
To only uninstall the Docker package:
# apt-get purge docker-engine
To uninstall the Docker package and dependencies that are no longer needed:
# apt-get autoremove --purge docker-engine
The above commands will not remove images, containers, volumes, or user created configuration files on your host. If you wish to delete all images, containers, and volumes run the following command:
# rm -rf /var/lib/docker
Locate and delete any user-created configuration files.
Summary
I think, Docker if the future replacement of the VMs as it’s a lightweight server, it do not need a dedicated memory or disk or CPU power. Your server can run number of containers higher than the number of VMs with same server’s hardware. Personally, I’m moving from using VMs to use Docker containers to save my machines resources. Finally, with help of this article you could install Docker engine and enable, start it. I also included how to completely remove Docker packages.
If You Appreciate What We Do Here On Mimastech, You Should Consider:
- Stay Connected to: Facebook | Twitter | Google+
- Support us via PayPal Donation
- Subscribe to our email newsletters.
- Tell other sysadmins / friends about Us - Share and Like our posts and services
We are thankful for your never ending support.