mirror of https://github.com/docker/docs.git
fix broken link (#5581)
Signed-off-by: dungeonmaster18 <umesh4257@gmail.com>
This commit is contained in:
parent
8d9992996e
commit
f834679182
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue