From 61cf09b2e7491295575195b616207059e7107f01 Mon Sep 17 00:00:00 2001 From: Thatcher Peskens Date: Thu, 28 Mar 2013 19:03:06 -0700 Subject: [PATCH] Fixed some links in gettingstarted --- docs/sources/gettingstarted/index.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/sources/gettingstarted/index.html b/docs/sources/gettingstarted/index.html index c94ecd05bf..b86e9bbdd4 100644 --- a/docs/sources/gettingstarted/index.html +++ b/docs/sources/gettingstarted/index.html @@ -13,15 +13,15 @@ - - + + - + - - + + @@ -63,7 +63,7 @@
- Docker is still under heavy development. It should not yet be used in production. Check the repo for recent progress. + Docker is still under heavy development. It should not yet be used in production. Check the repo for recent progress.
@@ -76,8 +76,8 @@

Install dependencies:

-
sudo apt-get install lxc wget bsdtar curl
-
sudo apt-get install linux-image-extra-`uname -r`
+
sudo apt-get install lxc wget bsdtar curl
+
sudo apt-get install linux-image-extra-`uname -r`

The linux-image-extra package is needed on standard Ubuntu EC2 AMIs in order to install the aufs kernel module.

@@ -85,15 +85,15 @@

Install the latest docker binary:

-
wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz
-
tar -xf docker-master.tgz
+
wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz
+
tar -xf docker-master.tgz
  • Run your first container!

    cd docker-master
    -
    sudo ./docker run -i -t base /bin/bash
    +
    sudo ./docker run -i -t base /bin/bash

    Done!

    Consider adding docker to your PATH for simplicity.