From 2556fbdbfbf42335ecc4ac4a060beee182ca059f Mon Sep 17 00:00:00 2001 From: Deepesha Burse <87636253+deepeshaburse@users.noreply.github.com> Date: Thu, 20 Jul 2023 18:26:45 +0530 Subject: [PATCH] Update docs/how_to_guides/distributing_oci_layouts.mdx Co-authored-by: Terry Howe Signed-off-by: Deepesha Burse <87636253+deepeshaburse@users.noreply.github.com> --- .../distributing_oci_layouts.mdx | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/docs/how_to_guides/distributing_oci_layouts.mdx b/docs/how_to_guides/distributing_oci_layouts.mdx index c7443927..83c8d1be 100644 --- a/docs/how_to_guides/distributing_oci_layouts.mdx +++ b/docs/how_to_guides/distributing_oci_layouts.mdx @@ -31,24 +31,7 @@ This command is used to create a new instance of a builder with a single node ba docker buildx build . -f Dockerfile -o type=oci,dest=hello-world.tar -t hello-world:v1 ``` -Expected output: -``` -[+] Building 7.0s (7/7) FINISHED                 docker-container:hungry_wilson - => [internal] booting buildkit                                            3.0s - => => pulling image moby/buildkit:buildx-stable-1                         2.5s - => => creating container buildx_buildkit_hungry_wilson0                   0.5s - - - - => => exporting manifest sha256:3fd491e6dc3ce66cae989d23b3f3d5752314cd17  0.0s - => => exporting config sha256:5e9872dc690060c52e4ea6e9357aaebb9d9187b44a  0.0s - => => sending tarball                                                     0.0s -``` - -This command has multiple parts to break down: - -`build` is needed to build the OCI Image based on the Dockerfile we provide. -hello-world:v1 is the name and tag associated with the image built. +This command has multiple parts to break down, the `build` is needed to build the OCI Image based on the Dockerfile we provide and the hello-world:v1 is the name and tag to apply to the image built. | Flag | Description | |--------------|------------------------------------------------------|