mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-24 09:17:53 +00:00
28 lines
420 B
Go
28 lines
420 B
Go
package cliconfig
|
|
|
|
import (
|
|
buildahcli "github.com/containers/buildah/pkg/cli"
|
|
)
|
|
|
|
type CreateValues struct {
|
|
PodmanCommand
|
|
}
|
|
|
|
type RunValues struct {
|
|
PodmanCommand
|
|
}
|
|
|
|
type BuildValues struct {
|
|
PodmanCommand
|
|
*buildahcli.BudResults
|
|
*buildahcli.UserNSResults
|
|
*buildahcli.FromAndBudResults
|
|
*buildahcli.NameSpaceResults
|
|
*buildahcli.LayerResults
|
|
}
|
|
|
|
type CpValues struct {
|
|
PodmanCommand
|
|
Extract bool
|
|
Pause bool
|
|
}
|