diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-04-14 11:00:40 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2020-04-14 14:48:37 -0700 |
commit | d51727642603ba160a7898ee4597d0f071cdea44 (patch) | |
tree | c2b3a369924f29ddf1762d32941dd10b38da2b9d /pkg/domain/infra/tunnel/containers.go | |
parent | 0d01f09bf4103538a6011019b690e5aa11c377db (diff) | |
download | podman-d51727642603ba160a7898ee4597d0f071cdea44.tar.gz podman-d51727642603ba160a7898ee4597d0f071cdea44.tar.bz2 podman-d51727642603ba160a7898ee4597d0f071cdea44.zip |
Add support for the global flags and config files
Note: This PR doesn't provide full rootless support that will be
addressed in a future PR
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel/containers.go')
-rw-r--r-- | pkg/domain/infra/tunnel/containers.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go index f59d4eb0a..05b62efcf 100644 --- a/pkg/domain/infra/tunnel/containers.go +++ b/pkg/domain/infra/tunnel/containers.go @@ -5,6 +5,7 @@ import ( "io" "os" + "github.com/containers/common/pkg/config" "github.com/containers/image/v5/docker/reference" "github.com/containers/libpod/libpod/define" "github.com/containers/libpod/pkg/bindings/containers" @@ -362,3 +363,7 @@ func (ic *ContainerEngine) ContainerMount(ctx context.Context, nameOrIds []strin func (ic *ContainerEngine) ContainerUnmount(ctx context.Context, nameOrIds []string, options entities.ContainerUnmountOptions) ([]*entities.ContainerUnmountReport, error) { return nil, errors.New("unmounting containers is not supported for remote clients") } + +func (ic *ContainerEngine) Config(_ context.Context) (*config.Config, error) { + return config.Default() +} |