Browse code

Fix some errant links

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>

Sven Dowideit authored on 2015/10/22 15:59:16
Showing 5 changed files
... ...
@@ -109,8 +109,8 @@ You must delete the user created configuration files manually.
109 109
 
110 110
 ## Where to go from here
111 111
 
112
-You can find more details about Docker on openSUSE or SUSE Linux Enterprise in
113
-the [Docker quick start guide](https://www.suse.com/documentation/sles-12/dockerquick/data/dockerquick.
114
-html) on the SUSE website. The document targets SUSE Linux Enterprise, but its contents apply also to openSUSE.
112
+You can find more details about Docker on openSUSE or SUSE Linux Enterprise in the
113
+[Docker quick start guide](https://www.suse.com/documentation/sles-12/dockerquick/data/dockerquick.html)
114
+on the SUSE website. The document targets SUSE Linux Enterprise, but its contents apply also to openSUSE.
115 115
 
116 116
 Continue to the [User Guide](../userguide/).
... ...
@@ -44,7 +44,7 @@ The built-in LXC execution driver is deprecated for an external implementation.
44 44
 The lxc-conf flag and API fields will also be removed.
45 45
 
46 46
 ### Old Command Line Options
47
-**Deprecated In Release: [v1.8.0](../release-notes.md#docker-engine-1-8-0)**
47
+**Deprecated In Release: [v1.8.0](release-notes.md#docker-engine-1-8-0)**
48 48
 
49 49
 **Target For Removal In Release: v1.10**
50 50
 
... ...
@@ -126,9 +126,8 @@ and pass along signals. All of that is configurable:
126 126
     -i=false        : Keep STDIN open even if not attached
127 127
 
128 128
 If you do not specify `-a` then Docker will [attach all standard
129
-streams]( https://github.com/docker/docker/blob/
130
-75a7f4d90cde0295bcfb7213004abce8d4779b75/commands.go#L1797). You can
131
-specify to which of the three standard streams (`STDIN`, `STDOUT`,
129
+streams]( https://github.com/docker/docker/blob/75a7f4d90cde0295bcfb7213004abce8d4779b75/commands.go#L1797).
130
+You can specify to which of the three standard streams (`STDIN`, `STDOUT`,
132 131
 `STDERR`) you'd like to connect instead, as in:
133 132
 
134 133
     $ docker run -a stdin -a stdout -i -t ubuntu /bin/bash
... ...
@@ -26,7 +26,7 @@ have `sudo` privileges on your local machine or in the VM.
26 26
 This sandbox requires you to install two Docker tools: Docker Engine and Docker
27 27
 Compose. To install the Docker Engine, choose from the [list of supported
28 28
 platforms](../../installation). To install Docker Compose, see the
29
-[detailed instructions here](https://docs.docker.com/compose/install.md).
29
+[detailed instructions here](https://docs.docker.com/compose/install/).
30 30
 
31 31
 Finally, you'll need to have `git` installed on your local system or VM.
32 32
 
... ...
@@ -150,8 +150,8 @@ Here we've mounted the same `/src/webapp` directory but we've added the `ro`
150 150
 option to specify that the mount should be read-only.
151 151
 
152 152
 Because of [limitations in the `mount`
153
-function](http://lists.linuxfoundation.org/pipermail/containers/2015-April/
154
-035788.html), moving subdirectories within the host's source directory can give
153
+function](http://lists.linuxfoundation.org/pipermail/containers/2015-April/035788.html),
154
+moving subdirectories within the host's source directory can give
155 155
 access from the container to the host's file system. This requires a malicious
156 156
 user with access to host and its mounted directory. 
157 157