Browse code

run.md: Close braces

Docker-DCO-1.1-Signed-off-by: Felix Rabe <felix@rabe.io> (github: felixrabe)

Felix Rabe authored on 2014/05/03 09:20:59
Showing 1 changed files
... ...
@@ -220,7 +220,7 @@ in `docker run`. We'll go through what the developer might have set in each
220 220
 Dockerfile instruction and how the operator can override that setting.
221 221
 
222 222
  - [CMD (Default Command or Options)](#cmd-default-command-or-options)
223
- - [ENTRYPOINT (Default Command to Execute at Runtime](
223
+ - [ENTRYPOINT (Default Command to Execute at Runtime)](
224 224
     #entrypoint-default-command-to-execute-at-runtime)
225 225
  - [EXPOSE (Incoming Ports)](#expose-incoming-ports)
226 226
  - [ENV (Environment Variables)](#env-environment-variables)
... ...
@@ -243,7 +243,7 @@ operator (the person running a container from the image), you can override that
243 243
 If the image also specifies an `ENTRYPOINT` then the `CMD` or `COMMAND` get
244 244
 appended as arguments to the `ENTRYPOINT`.
245 245
 
246
-## ENTRYPOINT (Default Command to Execute at Runtime
246
+## ENTRYPOINT (Default Command to Execute at Runtime)
247 247
 
248 248
     --entrypoint="": Overwrite the default entrypoint set by the image
249 249