diff --git a/engine/userguide/eng-image/baseimages.md b/engine/userguide/eng-image/baseimages.md index 1c298ed97b..9e7a3b9a3f 100644 --- a/engine/userguide/eng-image/baseimages.md +++ b/engine/userguide/eng-image/baseimages.md @@ -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