mirror of
https://github.com/containers/podman.git
synced 2025-09-09 19:52:21 +08:00

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