mirror of https://github.com/docker/docs.git
'docker images' lists images in reverse creation order
This commit is contained in:
parent
c78cbbd002
commit
a216712f3c
|
@ -112,7 +112,7 @@ func (store *Store) Remove(img *Image) error {
|
||||||
|
|
||||||
func (store *Store) List(pth string) ([]*Image, error) {
|
func (store *Store) List(pth string) ([]*Image, error) {
|
||||||
pth = path.Clean(pth)
|
pth = path.Clean(pth)
|
||||||
images, err := store.orm.Select(Image{}, "select images.* from images, paths where Path=? and paths.Image=images.Id", pth)
|
images, err := store.orm.Select(Image{}, "select images.* from images, paths where Path=? and paths.Image=images.Id order by images.Created desc", pth)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue