Skip to content

Commit fd61877

Browse files
authored
Merge pull request #5464 from dvdksn/docs-s-parent-base
docs: s/parent image/base image/
2 parents d09c1e2 + 5f27278 commit fd61877

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

frontend/dockerfile/docs/reference.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ be UPPERCASE to distinguish them from arguments more easily.
4747
Docker runs instructions in a Dockerfile in order. A Dockerfile **must
4848
begin with a `FROM` instruction**. This may be after [parser
4949
directives](#parser-directives), [comments](#format), and globally scoped
50-
[ARGs](#arg). The `FROM` instruction specifies the [parent
51-
image](https://docs.docker.com/glossary/#parent-image) from which you are
50+
[ARGs](#arg). The `FROM` instruction specifies the [base
51+
image](https://docs.docker.com/glossary/#base-image) from which you are
5252
building. `FROM` may only be preceded by one or more `ARG` instructions, which
5353
declare arguments that are used in `FROM` lines in the Dockerfile.
5454

@@ -1052,9 +1052,9 @@ LABEL multi.label1="value1" \
10521052
> using string interpolation (e.g. `LABEL example="foo-$ENV_VAR"`), single
10531053
> quotes will take the string as is without unpacking the variable's value.
10541054
1055-
Labels included in base or parent images (images in the `FROM` line) are
1056-
inherited by your image. If a label already exists but with a different value,
1057-
the most-recently-applied value overrides any previously-set value.
1055+
Labels included in base images (images in the `FROM` line) are inherited by
1056+
your image. If a label already exists but with a different value, the
1057+
most-recently-applied value overrides any previously-set value.
10581058

10591059
To view an image's labels, use the `docker image inspect` command. You can use
10601060
the `--format` option to show just the labels;

0 commit comments

Comments
 (0)