Docker

Differences between revisions 2 and 3
Revision 2 as of 2016-03-09 15:56:32
Size: 943
Editor: breno-leitao
Comment:
Revision 3 as of 2016-03-09 15:57:01
Size: 949
Editor: breno-leitao
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
     {{{deb http://ppa.launchpad.net/docker/experimental/ubuntu xenial main
     deb-src http://ppa.launchpad.net/docker/experimental/ubuntu xenial main}}}
     {{{deb http://ppa.launchpad.net/docker/experimental/ubuntu xenial main}}}
     {{{deb-src http://ppa.launchpad.net/docker/experimental/ubuntu xenial main}}}

Package handling

How to install experimental Docker versions on my Ubuntu 16.04 LTS

In order to have bleeding edge docker packages in Ubuntu, you can follow these instructions:

1. Add the following line to /etc/apt/sources.list:

  • deb http://ppa.launchpad.net/docker/experimental/ubuntu xenial main deb-src http://ppa.launchpad.net/docker/experimental/ubuntu xenial main

2. Add the PPA key to your keyring

  • $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0x6c09f330d9d32a57

3. Install the package itself

  • $ sudo apt-get update $ sudo apt-get install docker.io

4. Remove the old aufs directory

  • $ sudo mv /var/lib/docker/aufs /var/lib/docker/aufs.old

5. Restart docker daemon

  • $ sudo systemctl restart docker

6. Docker is now up and running

  • $ docker --version
    • Docker version 1.10.2, build c3959b1

ppp64el/Docker (last edited 2016-06-03 14:10:10 by localhost)