mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-11 03:15:44 +00:00
images --all developer note
podman does not implement --all for images intermediate images are only generated during the build process. they are children to the image once built. until buildah supports caching builds, it will not generate these intermediate images. Signed-off-by: baude <bbaude@redhat.com> Closes: #344 Approved by: rhatdan
This commit is contained in:
parent
57b910a031
commit
445aaf87fa
1 changed files with 8 additions and 0 deletions
|
|
@ -124,6 +124,14 @@ func imagesCmd(c *cli.Context) error {
|
|||
referenceFilter := generateImagesFilter(params, "reference")
|
||||
imageInputFilter := generateImagesFilter(params, "image-input")
|
||||
|
||||
/*
|
||||
podman does not implement --all for images
|
||||
|
||||
intermediate images are only generated during the build process. they are
|
||||
children to the image once built. until buildah supports caching builds,
|
||||
it will not generate these intermediate images.
|
||||
*/
|
||||
|
||||
images, err := runtime.GetImages(params, labelFilter, beforeImageFilter, sinceImageFilter, danglingFilter, referenceFilter, imageInputFilter)
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "could not get list of images matching filter")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue