Documentation ¶
Index ¶
- Constants
- func NativeRootlessProcessStartupHook() bool
- func ProcessStartupHook(mode Mode) (bool, error)
- type BaseBuildah
- type BuildFromDockerfileOpts
- type Buildah
- type BuildahOpts
- type CommonBuildahOpts
- type CommonOpts
- type DockerWithFuseBuildah
- func (b *DockerWithFuseBuildah) BuildFromDockerfile(ctx context.Context, dockerfile []byte, opts BuildFromDockerfileOpts) (string, error)
- func (b *DockerWithFuseBuildah) FromCommand(ctx context.Context, container string, image string, opts FromCommandOpts) error
- func (b *DockerWithFuseBuildah) Inspect(ctx context.Context, ref string) (*types.BuilderInfo, error)
- func (b *DockerWithFuseBuildah) Pull(ctx context.Context, ref string, opts PullOpts) error
- func (b *DockerWithFuseBuildah) Push(ctx context.Context, ref string, opts PushOpts) error
- func (b *DockerWithFuseBuildah) Rmi(ctx context.Context, ref string, opts RmiOpts) error
- func (b *DockerWithFuseBuildah) RunCommand(ctx context.Context, container string, command []string, opts RunCommandOpts) error
- func (b *DockerWithFuseBuildah) Tag(ctx context.Context, ref, newRef string, opts TagOpts) error
- type DockerWithFuseModeOpts
- type FromCommandOpts
- type Mode
- type NativeRootlessModeOpts
- type PullOpts
- type PushOpts
- type RmiOpts
- type RunCommandOpts
- type TagOpts
Constants ¶
View Source
const ( DefaultShmSize = "65536k" BuildahImage = "ghcr.io/werf/buildah:v1.22.3-1" BuildahStorageContainerName = "werf-buildah-storage" )
Variables ¶
This section is empty.
Functions ¶
func NativeRootlessProcessStartupHook ¶
func NativeRootlessProcessStartupHook() bool
func ProcessStartupHook ¶
Types ¶
type BaseBuildah ¶
type BaseBuildah struct {
TmpDir string
}
func NewBaseBuildah ¶
func NewBaseBuildah(tmpDir string) (*BaseBuildah, error)
func (*BaseBuildah) NewSessionTmpDir ¶
func (b *BaseBuildah) NewSessionTmpDir() (string, error)
type BuildFromDockerfileOpts ¶
type BuildFromDockerfileOpts struct { CommonOpts ContextTar io.Reader }
type Buildah ¶
type Buildah interface { Tag(ctx context.Context, ref, newRef string, opts TagOpts) error Push(ctx context.Context, ref string, opts PushOpts) error BuildFromDockerfile(ctx context.Context, dockerfile []byte, opts BuildFromDockerfileOpts) (string, error) RunCommand(ctx context.Context, container string, command []string, opts RunCommandOpts) error FromCommand(ctx context.Context, container string, image string, opts FromCommandOpts) error Pull(ctx context.Context, ref string, opts PullOpts) error Inspect(ctx context.Context, ref string) (*types.BuilderInfo, error) Rmi(ctx context.Context, ref string, opts RmiOpts) error }
func NewBuildah ¶
func NewBuildah(mode Mode, opts BuildahOpts) (b Buildah, err error)
func NewNativeRootlessBuildah ¶
func NewNativeRootlessBuildah(commonOpts CommonBuildahOpts, opts NativeRootlessModeOpts) (Buildah, error)
type BuildahOpts ¶
type BuildahOpts struct { CommonBuildahOpts DockerWithFuseModeOpts NativeRootlessModeOpts }
type CommonBuildahOpts ¶
type CommonBuildahOpts struct {
TmpDir string
}
type CommonOpts ¶
type DockerWithFuseBuildah ¶
type DockerWithFuseBuildah struct {
BaseBuildah
}
func NewDockerWithFuseBuildah ¶
func NewDockerWithFuseBuildah(commonOpts CommonBuildahOpts, opts DockerWithFuseModeOpts) (*DockerWithFuseBuildah, error)
func (*DockerWithFuseBuildah) BuildFromDockerfile ¶
func (b *DockerWithFuseBuildah) BuildFromDockerfile(ctx context.Context, dockerfile []byte, opts BuildFromDockerfileOpts) (string, error)
func (*DockerWithFuseBuildah) FromCommand ¶
func (b *DockerWithFuseBuildah) FromCommand(ctx context.Context, container string, image string, opts FromCommandOpts) error
func (*DockerWithFuseBuildah) Inspect ¶
func (b *DockerWithFuseBuildah) Inspect(ctx context.Context, ref string) (*types.BuilderInfo, error)
TODO(ilya-lesikov): make it more generic to handle not only images
func (*DockerWithFuseBuildah) RunCommand ¶
func (b *DockerWithFuseBuildah) RunCommand(ctx context.Context, container string, command []string, opts RunCommandOpts) error
type DockerWithFuseModeOpts ¶
type DockerWithFuseModeOpts struct{}
type FromCommandOpts ¶
type FromCommandOpts struct {
CommonOpts
}
type NativeRootlessModeOpts ¶
type NativeRootlessModeOpts struct{}
type PullOpts ¶
type PullOpts struct {
CommonOpts
}
type PushOpts ¶
type PushOpts struct {
CommonOpts
}
type RmiOpts ¶
type RmiOpts struct { CommonOpts Force bool }
type RunCommandOpts ¶
type RunCommandOpts struct { CommonOpts BuildArgs []string }
type TagOpts ¶
type TagOpts struct {
CommonOpts
}
Source Files ¶
Click to show internal directories.
Click to hide internal directories.