mirror of https://github.com/docker/docs.git
Update multi-stage.md
Added the wildcard to the filter so that all the matching images are shown. The command without the wildcard didn't match either of the newly named images.
This commit is contained in:
parent
8e4815215a
commit
3a910cd3d8
|
@ -159,7 +159,7 @@ And now you can build the client and server programs as separate Docker images
|
||||||
```console
|
```console
|
||||||
$ docker build --tag=buildme-client --target=client .
|
$ docker build --tag=buildme-client --target=client .
|
||||||
$ docker build --tag=buildme-server --target=server .
|
$ docker build --tag=buildme-server --target=server .
|
||||||
$ docker images buildme
|
$ docker images "buildme*"
|
||||||
REPOSITORY TAG IMAGE ID CREATED SIZE
|
REPOSITORY TAG IMAGE ID CREATED SIZE
|
||||||
buildme-client latest 659105f8e6d7 20 seconds ago 4.25MB
|
buildme-client latest 659105f8e6d7 20 seconds ago 4.25MB
|
||||||
buildme-server latest 666d492d9f13 5 seconds ago 4.2MB
|
buildme-server latest 666d492d9f13 5 seconds ago 4.2MB
|
||||||
|
|
Loading…
Reference in New Issue