Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
This commit is contained in:
Silvin Lubecki 2020-12-15 17:41:07 +01:00
Родитель ab04bec530
Коммит f62b571ca3
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -204,7 +204,7 @@ func printConfig(out io.Writer, image *Image) error {
fmt.Fprintf(out, ansi.Title("Config:")+"\n")
fmt.Fprintf(out, ansi.Key("MediaType:")+"\t%s\n", image.Manifest.Config.MediaType)
fmt.Fprintf(out, ansi.Key("Size:")+"\t\t%v\n", units.HumanSize(float64(image.Manifest.Config.Size)))
fmt.Fprintf(out, ansi.Key("Digest:")+"\t%s\n", image.Manifest.Config.Digest)
fmt.Fprintf(out, ansi.Key("Digest:")+"\t\t%s\n", image.Manifest.Config.Digest)
if len(image.Config.Config.Cmd) > 0 {
fmt.Fprintf(out, ansi.Key("Command:")+"\t%q\n", strings.TrimPrefix(strings.Join(image.Config.Config.Cmd, " "), "/bin/sh -c "))
}
@ -256,7 +256,7 @@ func printLayers(out io.Writer, image *Image) error {
}
fmt.Fprintf(out, ansi.Key("MediaType:")+"\t%s\n", layer.MediaType)
fmt.Fprintf(out, ansi.Key("Size:")+"\t\t%v\n", units.HumanSize(float64(layer.Size)))
fmt.Fprintf(out, ansi.Key("Digest:")+"\t%s\n", layer.Digest)
fmt.Fprintf(out, ansi.Key("Digest:")+"\t\t%s\n", layer.Digest)
if len(image.Manifest.Layers) == len(history) {
fmt.Fprintf(out, ansi.Key("Command:")+"\t%s\n", cleanCreatedBy(history[i].CreatedBy))
if history[i].Created != nil {

Просмотреть файл

@ -13,7 +13,7 @@ Created: Less than a second ago
Config:
MediaType: mediatype/config
Size: 123B
Digest: sha256:beef
Digest: sha256:beef
Command: "./cmd parameter"
Entrypoint: "./entrypoint parameter"
User: user
@ -30,6 +30,6 @@ Stop signal: SIGTERM
Layers:
MediaType: mediatype/layer
Size: 456B
Digest: sha256:c0ffee
Digest: sha256:c0ffee
Command: apt-get install
Created: Less than a second ago