wiki:Docker HowTo Install

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.

Docker location / workspace

Create the necessary workspace on your VM

sudo mkdir /local/

sudo mkdir /local/docker/

sudo mkdir /local/docker/si84

sudo mkdir /local/docker/richard

All docker pulls must be done in this area.

Docker shared area

Create a share docker area for hosts and docker container to share files :

sudo mkdir share

sudo chmod 777 -R share/

Stop Apache on host system

Its very important to stop apache on your host system for docker to work

sudo apt-get install rcconf

sudo rcconf

select apache and click on ok and restart VM

sudo reboot

Possible network changes

Its possible that docker may change your network adapter name.

After installing docker run

ifconfig -a

and examine

vi /etc/network/interfaces

Its possible you may have to change the network adapter from eth0 to ens32

Error: Macro BackLinks(None) failed
'Environment' object has no attribute 'get_db_cnx'

Last modified 7 years ago Last modified on 06/10/17 08:45:39
Note: See TracWiki for help on using the wiki.