From 43c7ad2aed1b0ce1206b9412246057dd266c5757 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 26 Jul 2024 10:08:30 +0200 Subject: [PATCH] build/buildkit: fix image name The title suggested a "hello-world" image, but we were building a "hello-buildkit" image, but then trying to run "hello-world". Signed-off-by: Sebastiaan van Stijn --- content/build/buildkit/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/build/buildkit/_index.md b/content/build/buildkit/_index.md index 653cdba670..8bbdfddfa4 100644 --- a/content/build/buildkit/_index.md +++ b/content/build/buildkit/_index.md @@ -219,7 +219,7 @@ We appreciate any feedback you submit by [opening an issue here](https://github. ... ``` -9. Create a Dockerfile and build a `hello-world` image. +9. Create a Dockerfile and build a `hello-buildkit` image. ```console > mkdir sample_dockerfile @@ -246,5 +246,5 @@ We appreciate any feedback you submit by [opening an issue here](https://github. 11. After pushing to the registry, run the image with `docker run`. ```console - > docker run /hello-world + > docker run /hello-buildkit ```