diff --git a/docs/sources/gettingstarted/index.html b/docs/sources/gettingstarted/index.html index b86e9bbdd4..1022879071 100644 --- a/docs/sources/gettingstarted/index.html +++ b/docs/sources/gettingstarted/index.html @@ -71,34 +71,42 @@
Install dependencies:
+Add the Ubuntu PPA (Personal Package Archive) sources to your apt sources list. Copy and + paste the following lines at once.
sudo apt-get install lxc wget bsdtar curl
- sudo apt-get install linux-image-extra-`uname -r`
sudo sh -c "echo 'deb http://ppa.launchpad.net/dotcloud/lxc-docker/ubuntu precise main' >> /etc/apt/sources.list"-
The linux-image-extra
package is needed on standard Ubuntu EC2 AMIs in order to install the aufs kernel module.
Install the latest docker binary:
+Update your sources. You will see a warning that GPG signatures cannot be verified.
wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz
- tar -xf docker-master.tgz
+ sudo apt-get update
Run your first container!
+Now install it, you will see another warning that the package cannot be authenticated. Confirm install.
-cd docker-master
- sudo ./docker run -i -t base /bin/bash
+ sudo apt-get install lxc-docker
Done!
-Consider adding docker to your PATH
for simplicity.
Run!
+ +docker
+