Browse code

Update documentation, use docker-latest instead of docker-master

Guillaume J. Charmes authored on 2013/05/07 05:26:23
Showing 3 changed files
... ...
@@ -36,9 +36,9 @@ else
36 36
 fi
37 37
 
38 38
 echo "Downloading docker binary and uncompressing into /usr/local/bin..."
39
-curl -s http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz |
39
+curl -s http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-latest.tgz |
40 40
 tar -C /usr/local/bin --strip-components=1 -zxf- \
41
-docker-master/docker
41
+docker-latest/docker
42 42
 
43 43
 if [ -f /etc/init/dockerd.conf ]
44 44
 then
... ...
@@ -26,9 +26,9 @@ Install the docker binary:
26 26
 
27 27
 ::
28 28
 
29
-    wget http://get.docker.io/builds/Linux/x86_64/docker-master.tgz
30
-    tar -xf docker-master.tgz
31
-    sudo cp ./docker-master /usr/local/bin
29
+    wget http://get.docker.io/builds/Linux/x86_64/docker-latest.tgz
30
+    tar -xf docker-latest.tgz
31
+    sudo cp ./docker-latest/docker /usr/local/bin
32 32
 
33 33
 Note: docker currently only supports 64-bit Linux hosts.
34 34
 
... ...
@@ -50,4 +50,4 @@ Run your first container!
50 50
 
51 51
 
52 52
 
53
-Continue with the :ref:`hello_world` example.
54 53
\ No newline at end of file
54
+Continue with the :ref:`hello_world` example.
... ...
@@ -11,7 +11,7 @@ Get the latest docker binary:
11 11
 
12 12
 ::
13 13
 
14
-  wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz
14
+  wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-latest.tgz
15 15
 
16 16
 
17 17
 
... ...
@@ -19,7 +19,7 @@ Unpack it to your current dir
19 19
 
20 20
 ::
21 21
 
22
-   tar -xf docker-master.tgz
22
+   tar -xf docker-latest.tgz
23 23
 
24 24
 
25 25
 Stop your current daemon. How you stop your daemon depends on how you started it.
... ...
@@ -38,4 +38,4 @@ Now start the daemon
38 38
    sudo ./docker -d &
39 39
 
40 40
 
41
-Alternatively you can replace the docker binary in ``/usr/local/bin``
42 41
\ No newline at end of file
42
+Alternatively you can replace the docker binary in ``/usr/local/bin``