This commit is contained in:
Pavel 'PK' Kaminsky 2021-06-29 16:31:27 -07:00 committed by GitHub
commit 98ad189444
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ command, you can see the command that was used to create each layer within an im
created earlier in the tutorial.
```bash
docker image history getting-started
docker image history docker/getting-started
```
You should get output that looks something like this (dates/IDs may be different).
@ -81,7 +81,7 @@ command, you can see the command that was used to create each layer within an im
full output (yes... funny how you use a truncated flag to get untruncated output, huh?)
```bash
docker image history --no-trunc getting-started
docker image history --no-trunc docker/getting-started
```