Browse code

Merge pull request #3437 from jamtur01/faqhere

Fixed duplicate here references in FAQ

Andy Rothfusz authored on 2014/01/03 09:44:38
Showing 1 changed files
... ...
@@ -125,8 +125,7 @@ What does Docker add to just plain LXC?
125 125
 What is different between a Docker container and a VM?
126 126
 ......................................................
127 127
 
128
-There's a great StackOverflow answer `here
129
-<http://stackoverflow.com/questions/16047306/how-is-docker-io-different-from-a-normal-virtual-machine>`_.
128
+There's a great StackOverflow answer `showing the differences <http://stackoverflow.com/questions/16047306/how-is-docker-io-different-from-a-normal-virtual-machine>`_.
130 129
 
131 130
 Do I lose my data when the container exits?
132 131
 ...........................................
... ...
@@ -147,7 +146,8 @@ How do I connect Docker containers?
147 147
 ...................................
148 148
 
149 149
 Currently the recommended way to link containers is via the `link` primitive.
150
-You can see details of how to use it `here <http://docs.docker.io/en/latest/use/working_with_links_names/>`_. 
150
+You can see details of how to `work with links here
151
+<http://docs.docker.io/en/latest/use/working_with_links_names/>`_.
151 152
 
152 153
 Also of useful when enabling more flexible service portability is the
153 154
 `Ambassador linking pattern
... ...
@@ -160,7 +160,7 @@ Any capable process supervisor such as http://supervisord.org/, runit, s6, or
160 160
 daemontools can do the trick. Docker will start up the process management
161 161
 daemon which will then fork to run additional processes. As long as the
162 162
 processor manager daemon continues to run, the container will continue to as
163
-well.  You can see a more subsantial example `here
163
+well.  You can see a more subsantial example `that uses supervisord here
164 164
 <http://docs.docker.io/en/latest/examples/using_supervisord/>`_.
165 165
 
166 166
 What platforms does Docker run on?