github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/cmd/podman/cliconfig/create.go (about)

     1  package cliconfig
     2  
     3  import (
     4  	buildahcli "github.com/containers/buildah/pkg/cli"
     5  )
     6  
     7  type CreateValues struct {
     8  	PodmanCommand
     9  }
    10  
    11  type RunValues struct {
    12  	PodmanCommand
    13  }
    14  
    15  // PodmanBuildResults represents the results for Podman Build flags
    16  // that are unique to Podman.
    17  type PodmanBuildResults struct {
    18  	SquashAll bool
    19  }
    20  
    21  type BuildValues struct {
    22  	PodmanCommand
    23  	*buildahcli.BudResults
    24  	*buildahcli.UserNSResults
    25  	*buildahcli.FromAndBudResults
    26  	*buildahcli.LayerResults
    27  	*buildahcli.NameSpaceResults
    28  	*PodmanBuildResults
    29  }
    30  
    31  type CpValues struct {
    32  	PodmanCommand
    33  	Extract bool
    34  	Pause   bool
    35  }