소스 검색

run.md: Close braces

Docker-DCO-1.1-Signed-off-by: Felix Rabe <felix@rabe.io> (github: felixrabe)
Felix Rabe 11 년 전
부모
커밋
4a3b0e8d5d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      docs/sources/reference/run.md

+ 2 - 2
docs/sources/reference/run.md

@@ -220,7 +220,7 @@ in `docker run`. We'll go through what the developer might have set in each
 Dockerfile instruction and how the operator can override that setting.
 
  - [CMD (Default Command or Options)](#cmd-default-command-or-options)
- - [ENTRYPOINT (Default Command to Execute at Runtime](
+ - [ENTRYPOINT (Default Command to Execute at Runtime)](
     #entrypoint-default-command-to-execute-at-runtime)
  - [EXPOSE (Incoming Ports)](#expose-incoming-ports)
  - [ENV (Environment Variables)](#env-environment-variables)
@@ -243,7 +243,7 @@ operator (the person running a container from the image), you can override that
 If the image also specifies an `ENTRYPOINT` then the `CMD` or `COMMAND` get
 appended as arguments to the `ENTRYPOINT`.
 
-## ENTRYPOINT (Default Command to Execute at Runtime
+## ENTRYPOINT (Default Command to Execute at Runtime)
 
     --entrypoint="": Overwrite the default entrypoint set by the image