Dagger
Search

testworkspace

This module has been generated via dagger init and serves as a reference to
basic module structure as you get started with Dagger.

Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.

The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.

Installation

dagger install github.com/marcosnils/testworkspace@86b6a3ff27e343bc17945490f585115c6bfee1f9

Entrypoint

Return Type
Testworkspace
Example
dagger -m github.com/marcosnils/testworkspace@86b6a3ff27e343bc17945490f585115c6bfee1f9 call \
func (m *MyModule) Example() *dagger.Testworkspace  {
	return dag.
			Testworkspace()
}
@function
def example() -> dagger.Testworkspace:
	return (
		dag.testworkspace()
	)
@func()
example(): Testworkspace {
	return dag
		.testworkspace()
}

Types

Testworkspace 🔗

test() 🔗

Return Type
Container !
Example
dagger -m github.com/marcosnils/testworkspace@86b6a3ff27e343bc17945490f585115c6bfee1f9 call \
 test
func (m *MyModule) Example() *dagger.Container  {
	return dag.
			Testworkspace().
			Test()
}
@function
def example() -> dagger.Container:
	return (
		dag.testworkspace()
		.test()
	)
@func()
example(): Container {
	return dag
		.testworkspace()
		.test()
}