From 1324c4f8b758d195141742aba285b03330e527c4 Mon Sep 17 00:00:00 2001 From: lmshipp Date: Thu, 6 Jan 2022 11:15:48 -0800 Subject: [PATCH] Updates Step 9 `docker inspect` commands There is an error in the example commands of Step 9 in the copy on write strategy section of the [About storage drivers](https://docs.docker.com/storage/storagedriver/#the-copy-on-write-cow-strategy) page. The first command should reference the `acme/my-base-image:1.0` image and the second command should reference the `acme/my-final-image:1.0`. --- storage/storagedriver/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/storagedriver/index.md b/storage/storagedriver/index.md index 004362cdf6..df1e27d876 100644 --- a/storage/storagedriver/index.md +++ b/storage/storagedriver/index.md @@ -339,7 +339,7 @@ layers are the same. {% raw %} ```console - $ docker image inspect --format "{{json .RootFS.Layers}}" acme/my-final-image:1.0 + $ docker image inspect --format "{{json .RootFS.Layers}}" acme/my-base-image:1.0 [ "sha256:72e830a4dff5f0d5225cdc0a320e85ab1ce06ea5673acfe8d83a7645cbd0e9cf", "sha256:07b4a9068b6af337e8b8f1f1dae3dd14185b2c0003a9a1f0a6fd2587495b204a" @@ -349,7 +349,7 @@ layers are the same. {% raw %} ```console - $ docker image inspect --format "{{json .RootFS.Layers}}" acme/my-base-image:1.0 + $ docker image inspect --format "{{json .RootFS.Layers}}" acme/my-final-image:1.0 [ "sha256:72e830a4dff5f0d5225cdc0a320e85ab1ce06ea5673acfe8d83a7645cbd0e9cf", "sha256:07b4a9068b6af337e8b8f1f1dae3dd14185b2c0003a9a1f0a6fd2587495b204a",