diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-13 13:38:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 13:38:47 -0700 |
commit | fa5b33e70b96ea8dfca3b46cab44a2e07028bf0c (patch) | |
tree | 8f20bbbf676ca47d8bcb3cf40d4c9f6b8e6c0fde /pkg/domain | |
parent | 5e245b02e9330dab6b161b88b8c13978c27ff5d9 (diff) | |
parent | 3fea2f0a91fb62848d481e027fde7109cdb0ebeb (diff) | |
download | podman-fa5b33e70b96ea8dfca3b46cab44a2e07028bf0c.tar.gz podman-fa5b33e70b96ea8dfca3b46cab44a2e07028bf0c.tar.bz2 podman-fa5b33e70b96ea8dfca3b46cab44a2e07028bf0c.zip |
Merge pull request #6211 from baude/v2remoteimagetree
enable remote image tree
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/infra/tunnel/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go index 788752fd8..eb25dc4a3 100644 --- a/pkg/domain/infra/tunnel/images.go +++ b/pkg/domain/infra/tunnel/images.go @@ -258,7 +258,7 @@ func (ir *ImageEngine) Build(ctx context.Context, containerFiles []string, opts } func (ir *ImageEngine) Tree(ctx context.Context, nameOrId string, opts entities.ImageTreeOptions) (*entities.ImageTreeReport, error) { - return nil, errors.New("not implemented yet") + return images.Tree(ir.ClientCxt, nameOrId, &opts.WhatRequires) } // Shutdown Libpod engine |