mirror of
https://github.com/containers/podman.git
synced 2026-07-13 08:41:44 -04:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
30 lines
787 B
Go
30 lines
787 B
Go
//go:build !remote && (linux || freebsd)
|
|
|
|
package infra
|
|
|
|
import (
|
|
"context"
|
|
|
|
flag "github.com/spf13/pflag"
|
|
"go.podman.io/podman/v6/pkg/domain/entities"
|
|
"go.podman.io/podman/v6/pkg/domain/infra/abi"
|
|
)
|
|
|
|
// 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
|
|
}
|
|
|
|
func NewLibpodImageRuntime(flags *flag.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
|
|
}
|