Dagger
Search

distrobox

primarily for bootstrapping container images

https://github.com/89luca89/distrobox

Installation

dagger install github.com/scottames/daggerverse/distrobox@v0.0.1

Entrypoint

Return Type
Distrobox
Example
func (m *myModule) example() *Distrobox  {
	return dag.
			Distrobox()
}

Types

Distrobox 🔗

containerWithDistroboxClonedToTmp() 🔗

ContainerWithDistroboxClonedToTmp returns a Container with the Distrobox project cloned inside

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
fromString "cgr.dev/chainguard/git:latest"container to use to clone the distrobox project note: `git` is expected to be the entrypoint!
destinationString "/tmp"desired path inside the container to clone the distrobox project
Example
func (m *myModule) example() *Container  {
	return dag.
			Distrobox().
			ContainerWithDistroboxClonedToTmp()
}

containerWithFileFromUrl() 🔗

ContainerWithFileFromUrl will exec curl to grab url content and place it at the given (or default) path

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
fromString "cgr.dev/chainguard/curl:latest"container to use to execute curl note: `curl` is expected to be the entrypoint!
urlString !-url to grab the content from
destinationString "/tmp"path to place the file at
nameString ""name the file should be saved as
Example
func (m *myModule) example(url string) *Container  {
	return dag.
			Distrobox().
			ContainerWithFileFromUrl(url)
}

hostSpawnFile() 🔗

ContainerWithHostExec will grab the appropriate version of the host-spawn binary from GitHub releases as it associates with the downloaded distrobox release

Return Type
File !
Arguments
NameTypeDefault ValueDescription
fromString "cgr.dev/chainguard/curl:latest"container to use to execute curl to retrieve the host-spawn binary note: `curl` is expected to be the entrypoint!
archString "x86_64"cpu architecture
Example
func (m *myModule) example() *File  {
	return dag.
			Distrobox().
			HostSpawnFile()
}

hostExecFile() 🔗

HostExecFile returns the distrobox-host-exec File

Return Type
File !
Arguments
NameTypeDefault ValueDescription
fromString "cgr.dev/chainguard/git:latest"container to use to clone the distrobox project note: `git` is expected to be the entrypoint!
pathString "/tmp"desired path inside the container to clone the distrobox project
Example
func (m *myModule) example() *File  {
	return dag.
			Distrobox().
			HostExecFile()
}

findStringSubmatchInFile() 🔗

FindStringSubmatchInFile returns the string matchings the given regex pattern in the provided File

Return Type
String !
Arguments
NameTypeDefault ValueDescription
fileFile !-file to match string in
regexString !-regex to match against
Example
func (m *myModule) example(ctx context.Context, file *File, regex string) string  {
	return dag.
			Distrobox().
			FindStringSubmatchInFile(ctx, file, regex)
}