fix broken link (#5581)

Signed-off-by: dungeonmaster18 <umesh4257@gmail.com>
This commit is contained in:
Umesh Yadav 2017-12-21 03:10:49 +05:30 committed by Misty Stanley-Jones
parent 8d9992996e
commit f834679182
1 changed files with 2 additions and 2 deletions

View File

@ -10,13 +10,13 @@ Most Dockerfiles start from a parent image. If you need to completely control
the contents of your image, you might need to create a base image instead.
Here's the difference:
- A [parent image](/reference/glossary.md#parent-image) is the image that your
- A [parent image](/glossary.md?term=parent%20image) is the image that your
image is based on. It refers to the contents of the `FROM` directive in the
Dockerfile. Each subsequent declaration in the Dockerfile modifies this parent
image. Most Dockerfiles start from a parent image, rather than a base image.
However, the terms are sometimes used interchangeably.
- A [base image](/reference/glossary.md#base-image) either has no `FROM` line
- A [base image](/glossary.md?term=base%20image) either has no `FROM` line
in its Dockerfile, or has `FROM scratch`.
This topic shows you several ways to create a base image. The specific process