wiki:Docker HowTo Install

Version 16 (modified by saj.issa, 8 years ago) ( diff )

--

Upto date docker installation instructions are are available from the docker website.

https://docs.docker.com/engine/installation/linux/ubuntulinux/

This is latest as of 05/09/2016 :

Update your apt sources

Docker’s APT repository contains Docker 1.7.1 and higher. To set APT to use packages from the new repository:

  1. Log into your machine as a user with sudo or root privileges.
  1. Open a terminal window.
  1. Update package information, ensure that APT works with the https method, and that CA certificates are installed.

$ sudo apt-get update

$ sudo apt-get install apt-transport-https ca-certificates

  1. Add the new GPG key.

$ sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D

  1. Open the /etc/apt/sources.list.d/docker.list file in your favorite editor.

If the file doesn’t exist, create it.

  1. Remove any existing entries.
  1. Add an entry for your Ubuntu operating system.

The possible entries are:

Ubuntu Xenial 16.04 (LTS)

deb https://apt.dockerproject.org/repo ubuntu-xenial main

  1. Save and close the /etc/apt/sources.list.d/docker.list file.
  1. Update the APT package index.

$ sudo apt-get update

  1. Purge the old repo if it exists.

$ sudo apt-get purge lxc-docker

  1. Verify that APT is pulling from the right repository.

$ apt-cache policy docker-engine

From now on when you run apt-get upgrade, APT pulls from the new repository.

Prerequisites by Ubuntu Version

Ubuntu Xenial 16.04 (LTS)

Ubuntu Wily 15.10

Ubuntu Trusty 14.04 (LTS)

For Ubuntu Trusty, Wily, and Xenial, it’s recommended to install the linux-image-extra-* kernel packages. The linux-image-extra-* packages allows you use the aufs storage driver.

To install the linux-image-extra-* packages:

  1. Open a terminal on your Ubuntu host.
  1. Update your package manager.

$ sudo apt-get update

  1. Install the recommended packages.

$ sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual

Go ahead and install Docker.

Install

Make sure you have installed the prerequisites for your Ubuntu version.

Then, install Docker using the following:

  1. Log into your Ubuntu installation as a user with sudo privileges.
  1. Update your APT package index.

$ sudo apt-get update

  1. Install Docker.

$ sudo apt-get install docker-engine

Start the docker daemon.

$ sudo service docker start

Verify docker is installed correctly.

$ sudo docker run hello-world

This command downloads a test image and runs it in a container. When the container runs, it prints an informational message. Then, it exits.

Note: See TracWiki for help on using the wiki.