Dagger
Search

payu

No long description provided.

Installation

dagger install github.com/isbry/dagger@3fcba2aa4a6cb47102ae5abd936329c19e57ac92

Entrypoint

Return Type
Payu
Example
dagger -m github.com/isbry/dagger@3fcba2aa4a6cb47102ae5abd936329c19e57ac92 call \
func (m *MyModule) Example() *dagger.Payu  {
	return dag.
			Payu()
}
@function
def example() -> dagger.Payu:
	return (
		dag.payu()
	)
@func()
example(): Payu {
	return dag
		.payu()
}

Types

Payu 🔗

compile() 🔗

Returns a container with the compiled code

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
dagger -m github.com/isbry/dagger@3fcba2aa4a6cb47102ae5abd936329c19e57ac92 call \
 compile --source DIR_PATH
func (m *MyModule) Example(source *dagger.Directory) *dagger.Container  {
	return dag.
			Payu().
			Compile(source)
}
@function
def example(source: dagger.Directory) -> dagger.Container:
	return (
		dag.payu()
		.compile(source)
	)
@func()
example(source: Directory): Container {
	return dag
		.payu()
		.compile(source)
}