mirror of
https://github.com/containers/podman.git
synced 2025-12-13 10:28:48 +08:00
There are many use cases where you want to just mount an image without creating a container on it. For example you might want to just examine the content in an image after you pull it for security analysys. Or you might want to just use the executables on the image without running it in a container. The image is mounted readonly since we do not want people changing images. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
41 lines
2.6 KiB
Go
41 lines
2.6 KiB
Go
package entities
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/common/pkg/config"
|
|
)
|
|
|
|
type ImageEngine interface {
|
|
Build(ctx context.Context, containerFiles []string, opts BuildOptions) (*BuildReport, error)
|
|
Config(ctx context.Context) (*config.Config, error)
|
|
Diff(ctx context.Context, nameOrID string, options DiffOptions) (*DiffReport, error)
|
|
Exists(ctx context.Context, nameOrID string) (*BoolReport, error)
|
|
History(ctx context.Context, nameOrID string, opts ImageHistoryOptions) (*ImageHistoryReport, error)
|
|
Import(ctx context.Context, opts ImageImportOptions) (*ImageImportReport, error)
|
|
Inspect(ctx context.Context, namesOrIDs []string, opts InspectOptions) ([]*ImageInspectReport, []error, error)
|
|
List(ctx context.Context, opts ImageListOptions) ([]*ImageSummary, error)
|
|
Load(ctx context.Context, opts ImageLoadOptions) (*ImageLoadReport, error)
|
|
Mount(ctx context.Context, images []string, options ImageMountOptions) ([]*ImageMountReport, error)
|
|
Prune(ctx context.Context, opts ImagePruneOptions) (*ImagePruneReport, error)
|
|
Pull(ctx context.Context, rawImage string, opts ImagePullOptions) (*ImagePullReport, error)
|
|
Push(ctx context.Context, source string, destination string, opts ImagePushOptions) error
|
|
Remove(ctx context.Context, images []string, opts ImageRemoveOptions) (*ImageRemoveReport, []error)
|
|
Save(ctx context.Context, nameOrID string, tags []string, options ImageSaveOptions) error
|
|
Search(ctx context.Context, term string, opts ImageSearchOptions) ([]ImageSearchReport, error)
|
|
SetTrust(ctx context.Context, args []string, options SetTrustOptions) error
|
|
ShowTrust(ctx context.Context, args []string, options ShowTrustOptions) (*ShowTrustReport, error)
|
|
Shutdown(ctx context.Context)
|
|
Tag(ctx context.Context, nameOrID string, tags []string, options ImageTagOptions) error
|
|
Tree(ctx context.Context, nameOrID string, options ImageTreeOptions) (*ImageTreeReport, error)
|
|
Unmount(ctx context.Context, images []string, options ImageUnmountOptions) ([]*ImageUnmountReport, error)
|
|
Untag(ctx context.Context, nameOrID string, tags []string, options ImageUntagOptions) error
|
|
ManifestCreate(ctx context.Context, names, images []string, opts ManifestCreateOptions) (string, error)
|
|
ManifestInspect(ctx context.Context, name string) ([]byte, error)
|
|
ManifestAdd(ctx context.Context, opts ManifestAddOptions) (string, error)
|
|
ManifestAnnotate(ctx context.Context, names []string, opts ManifestAnnotateOptions) (string, error)
|
|
ManifestRemove(ctx context.Context, names []string) (string, error)
|
|
ManifestPush(ctx context.Context, names []string, manifestPushOpts ManifestPushOptions) error
|
|
Sign(ctx context.Context, names []string, options SignOptions) (*SignReport, error)
|
|
}
|