From 3a910cd3d8934a7e0b85ee435140c0e7f0163951 Mon Sep 17 00:00:00 2001 From: Julian Harty Date: Wed, 15 Nov 2023 11:24:00 +0000 Subject: [PATCH] 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. --- content/build/guide/multi-stage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/build/guide/multi-stage.md b/content/build/guide/multi-stage.md index 8316f3619c..2b0a97a1e4 100644 --- a/content/build/guide/multi-stage.md +++ b/content/build/guide/multi-stage.md @@ -159,7 +159,7 @@ And now you can build the client and server programs as separate Docker images ```console $ docker build --tag=buildme-client --target=client . $ docker build --tag=buildme-server --target=server . -$ docker images buildme +$ docker images "buildme*" REPOSITORY TAG IMAGE ID CREATED SIZE buildme-client latest 659105f8e6d7 20 seconds ago 4.25MB buildme-server latest 666d492d9f13 5 seconds ago 4.2MB