Docker 1.0.1 is available for testing, in Ubuntu 14.04 LTS!
Docker 1.0.1 has landed in the trusty-proposed archive, which we hope to SRU to trusty-updates very soon. We would love to have your testing feedback, to ensure both upgrades from Docker 0.9.1, as well as new installs of Docker 1.0.1 behave well, and are of the highest quality you have come to expect from Ubuntu's LTS (Long Term Stable) releases! Please file any bugs or issues here.Moreover, this new version of the Docker package now installs the Docker binary to /usr/bin/docker, rather than /usr/bin/docker.io in previous versions. This should help Ubuntu's Docker package more closely match the wealth of documentation and examples available from our friends upstream.
A big thanks to Paul Tagliamonte, James Page, Nick Stinemates, Tianon Gravi, and Ryan Harper for their help upstream in Debian and in Ubuntu to get this package updated in Trusty! Also, it's probably worth mentioning that we're targeting Docker 1.1.2 (or perhaps 1.2.0) for Ubuntu 14.10 (Utopic), which will release on October 23, 2014.
Here are a few commands that might help your testing...
Check What Candidate Versions are Available
$ sudo apt-get update
$ apt-cache show docker.io | grep ^Version:
$ echo "deb http://archive.ubuntu.com/ubuntu/ trusty-proposed universe" | sudo tee -a /etc/apt/sources.list
$ sudo apt-get update
$ apt-cache show docker.io | grep ^Version:
Upgrades
Check if you already have Docker installed, using:$ dpkg -l docker.ioIf so, you can simply upgrade.
$ sudo apt-get upgradeAnd now, you can check your Docker version:
$ sudo dpkg -l docker.io | grep -m1 ^ii | awk '{print $3}'
0.9.1~dfsg1-2
New Installations
$ sudo apt-get install docker.io
$ dpkg -l docker.io | grep -m1 ^ii | awk '{print $3}' 1.0.1~dfsg1-0ubuntu1~ubuntu0.14.04.1
Running Docker
$ sudo docker pull ubuntu $ sudo docker run -i -t ubuntu /bin/bash
root@1728ffd1d47b:/# ps -ef UID PID PPID C STIME TTY TIME CMD root 1 0 0 13:42 ? 00:00:00 /bin/bash root 8 1 0 13:43 ? 00:00:00 ps -ef