Dagger
Search

module-a

No long description provided.

Installation

dagger install github.com/skycaptain/dagger-issue-passing-secrets/module-a@1eba463473fd67542ab021285354d8d60990d2fa

Entrypoint

Return Type
ModuleA !
Arguments
NameTypeDefault ValueDescription
netrcFileSecret nullNo description provided
Example
dagger -m github.com/skycaptain/dagger-issue-passing-secrets/module-a@1eba463473fd67542ab021285354d8d60990d2fa call \
func (m *MyModule) Example() *dagger.ModuleA  {
	return dag.
			ModuleA()
}
@function
def example() -> dagger.ModuleA:
	return (
		dag.module_a()
	)
@func()
example(): ModuleA {
	return dag
		.moduleA()
}

Types

ModuleA 🔗

container() 🔗

Return Type
Container !
Example
dagger -m github.com/skycaptain/dagger-issue-passing-secrets/module-a@1eba463473fd67542ab021285354d8d60990d2fa call \
 container
func (m *MyModule) Example() *dagger.Container  {
	return dag.
			ModuleA().
			Container()
}
@function
def example() -> dagger.Container:
	return (
		dag.module_a()
		.container()
	)
@func()
example(): Container {
	return dag
		.moduleA()
		.container()
}