This tutorial is going to cover about how to install Docker on Ubuntu 16.04, 15.10, 14.04. I just wanted to summarize all basic steps so that Docker installation on Ubuntu is actually quite simple.

1. Preparation

1.1 Check Kernel Version

Here are prerequisites to install Docker on Ubuntu 16.04, 15.10, 14.04

  • Your Ubuntu must be 64-bits OS
  • Docker requires kernel version should be 3.10 at minimum

You can do a quick check by using the following command:

Install Docker on Ubuntu 16.04, 15.10, 14.04 - Kernel version

Ubuntu kernel version

My Ubuntu kernel is 3.13. It’s good to get started.

1.2. Update APT sources

1.2.1. Executes below commands with root privilege to update APT package information and CA certificates

This will make sure APT can get latest and related certificates of its repositories.

1.2.2. Create a file at: /etc/apt/sources.list.d/docker.list

If the file was exist, empty the file content.

1.2.3. Add below entry to the file.

If your OS is Ubuntu 16.04

You can do that by using vim, nano or any editor you prefer. Below is an example for my Ubuntu 16.04

Or if your OS is Ubuntu 14.04

Or if your OS is Ubuntu 15.10

1.2.4 Update APT index and purge the old repositories (if exist)

1.2.5 Docker recommends to install linux-image-extra which allows us to use aufs storage driver

Done. You have finished the preparation. Next step will be the installation.

2. Install Docker on Ubuntu 16.04, 15.10, 14.04

Execute below steps in sequence to install Docker on Ubuntu 16.04, 15.10, 14.04.

2.1. Simply execute below command to install Docker

2.2. Start Docker daemon

2.3 Verify the installation by execute below command

You should see the result as below:

 

Install Docker on Ubuntu 16.04, 15.10, 14.04 - hello-world docker

sudo docker run hello-world

3. Additional Configurations

3.1. Avoid using sudo command when use docker commands

By default, docker deamon run with root user. To avoid using sudo when use docker commands, we will create a group docker and add user to that group. According to the docker document, when the docker daemon starts, it makes the ownership of the Unix socket read/writable by the docker group.

3.1.1. Create docker group

3.1.2. Add our desire user to that group

Currently, my user is vagrant

3.1.3. Log out and log in again

3.1.4. Verify that we don’t need sudo anymore

4. Uninstall Docker

Below are steps to uninstall Docker on Ubuntu 16.04, 15.10, 14.04.

4.1. Uninstall Docker engine

4.2. Uninstall all related dependent packages

4.3. Remove all images, containers, volumes

As for custom configuration files created , you have to delete by yourselves.

5. Summary

We have learned how to install Docker on Ubuntu 16.04, 15.10, 14.04. It’s pretty easy but need a little bit of care. Hopefully, we can get Docker installed easier later. In next posts, I’d like to introduce more about Docker topics like: Docker Compose, Docker Volume, etc. Below are other articles related to Docker. If you’re interested in, you can refer to the following links:

Copy Files, Folders from Host to Docker Container and Vice Versa

How to Get IP Address of a Docker Container

How To Pull A Docker Image And Run A Container

Basic Docker commands

Install Docker on CentOS 7.X

Introduction to Docker Compose

Vagrant Docker Provider Tutorial

Using Apache Kafka Docker

Insecure docker registry

 

0 0 vote
Article Rating