mirror of
https://github.com/containers/podman.git
synced 2025-09-10 06:22:21 +08:00

* registry.PodmanConfig() new returns a pointer to the source of truth Signed-off-by: Jhon Honce <jhonce@redhat.com>
22 lines
530 B
Go
22 lines
530 B
Go
// +build ABISupport
|
|
|
|
package infra
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/libpod/pkg/domain/entities"
|
|
"github.com/containers/libpod/pkg/domain/infra/abi"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
// ContainerEngine Image Proxy will be EOL'ed after podman is separated from libpod repo
|
|
|
|
func NewLibpodImageRuntime(flags *pflag.FlagSet, opts *entities.PodmanConfig) (entities.ImageEngine, error) {
|
|
r, err := GetRuntime(context.Background(), flags, opts)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &abi.ImageEngine{Libpod: r}, nil
|
|
}
|