images: move image package to images
Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
parent
604af9cd46
commit
39da6ff879
10 changed files with 28 additions and 28 deletions
4
cmd/dist/images.go
vendored
4
cmd/dist/images.go
vendored
|
@ -5,7 +5,7 @@ import (
|
|||
"os"
|
||||
"text/tabwriter"
|
||||
|
||||
"github.com/docker/containerd/image"
|
||||
"github.com/docker/containerd/images"
|
||||
"github.com/docker/containerd/progress"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/urfave/cli"
|
||||
|
@ -29,7 +29,7 @@ var imagesCommand = cli.Command{
|
|||
}
|
||||
defer tx.Rollback()
|
||||
|
||||
images, err := image.List(tx)
|
||||
images, err := images.List(tx)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "failed to list images")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue