busybox
No long description provided.
Installation
dagger install github.com/camptocamp/daggerverse/busybox@fe405b734b42c18543b3e22f4dc11ced1dd23896
Entrypoint
Return Type
Busybox
Example
dagger -m github.com/camptocamp/daggerverse/busybox@fe405b734b42c18543b3e22f4dc11ced1dd23896 call \
func (m *myModule) example() *Busybox {
return dag.
Busybox()
}
@function
def example() -> dag.Busybox:
return (
dag.busybox()
)
@func()
example(): Busybox {
return dag
.busybox()
}
Types
Busybox 🔗
container() 🔗
Return Type
Container !
Example
dagger -m github.com/camptocamp/daggerverse/busybox@fe405b734b42c18543b3e22f4dc11ced1dd23896 call \
container
func (m *myModule) example() *Container {
return dag.
Busybox().
Container()
}
@function
def example() -> dagger.Container:
return (
dag.busybox()
.container()
)
@func()
example(): Container {
return dag
.busybox()
.container()
}