distrobox
primarily for bootstrapping container imageshttps://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
Name | Type | Default Value | Description |
---|---|---|---|
from | String | "cgr.dev/chainguard/git:latest" | container to use to clone the distrobox project note: `git` is expected to be the entrypoint! |
destination | String | "/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
Name | Type | Default Value | Description |
---|---|---|---|
from | String | "cgr.dev/chainguard/curl:latest" | container to use to execute curl note: `curl` is expected to be the entrypoint! |
url | String ! | - | url to grab the content from |
destination | String | "/tmp" | path to place the file at |
name | String | "" | 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
Name | Type | Default Value | Description |
---|---|---|---|
from | String | "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! |
arch | String | "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
Name | Type | Default Value | Description |
---|---|---|---|
from | String | "cgr.dev/chainguard/git:latest" | container to use to clone the distrobox project note: `git` is expected to be the entrypoint! |
path | String | "/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
Name | Type | Default Value | Description |
---|---|---|---|
file | File ! | - | file to match string in |
regex | String ! | - | regex to match against |
Example
func (m *myModule) example(ctx context.Context, file *File, regex string) string {
return dag.
Distrobox().
FindStringSubmatchInFile(ctx, file, regex)
}