Browse code

Moved 'under the hood' below install instructions and examples in README

Solomon Hykes authored on 2013/04/21 09:33:02
Showing 1 changed files
... ...
@@ -33,23 +33,6 @@ Notable features
33 33
 
34 34
 * Interactive shell: docker can allocate a pseudo-tty and attach to the standard input of any container, for example to run a throwaway interactive shell.
35 35
 
36
-
37
-
38
-Under the hood
39
-
40
-Under the hood, Docker is built on the following components:
41
-
42
-
43
-* The [cgroup](http://blog.dotcloud.com/kernel-secrets-from-the-paas-garage-part-24-c) and [namespacing](http://blog.dotcloud.com/under-the-hood-linux-kernels-on-dotcloud-part) capabilities of the Linux kernel;
44
-
45
-* [AUFS](http://aufs.sourceforge.net/aufs.html), a powerful union filesystem with copy-on-write capabilities;
46
-
47
-* The [Go](http://golang.org) programming language;
48
-
49
-* [lxc](http://lxc.sourceforge.net/), a set of convenience scripts to simplify the creation of linux containers.
50
-
51
-
52 36
 Install instructions
53 37
 ==================
54 38
 
... ...
@@ -183,6 +166,22 @@ echo hello world | nc $IP $PORT
183 183
 echo "Daemon received: $(docker logs $JOB)"
184 184
 ```
185 185
 
186
+Under the hood
187
+--------------
188
+
189
+Under the hood, Docker is built on the following components:
190
+
191
+
192
+* The [cgroup](http://blog.dotcloud.com/kernel-secrets-from-the-paas-garage-part-24-c) and [namespacing](http://blog.dotcloud.com/under-the-hood-linux-kernels-on-dotcloud-part) capabilities of the Linux kernel;
193
+
194
+* [AUFS](http://aufs.sourceforge.net/aufs.html), a powerful union filesystem with copy-on-write capabilities;
195
+
196
+* The [Go](http://golang.org) programming language;
197
+
198
+* [lxc](http://lxc.sourceforge.net/), a set of convenience scripts to simplify the creation of linux containers.
199
+
200
+
201
+
186 202
 Contributing to Docker
187 203
 ======================
188 204