compose
No long description provided.
Installation
dagger install github.com/wingyplus/daggerverse/compose@3828726820037c487fbc2b5aac945da30c7d150fEntrypoint
Return Type
ComposeExample
dagger -m github.com/wingyplus/daggerverse/compose@3828726820037c487fbc2b5aac945da30c7d150f call \
func (m *MyModule) Example() *dagger.Compose  {
	return dag.
			Compose()
}@function
def example() -> dagger.Compose:
	return (
		dag.compose()
	)@func()
example(): Compose {
	return dag
		.compose()
}Types
Compose 🔗
withFile() 🔗
WithFile setup service binding from the given compose path.
Returns a container with pre-setup services.
Return Type
Container !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| path | StringKind ! | - | No description provided | 
Example
dagger -m github.com/wingyplus/daggerverse/compose@3828726820037c487fbc2b5aac945da30c7d150f call \
 with-filefunc (m *MyModule) Example(path )   {
	return dag.
			Compose().
			WithFile(path)
}@function
def example(path: ) -> :
	return (
		dag.compose()
		.with_file(path)
	)@func()
example(path: ):  {
	return dag
		.compose()
		.withFile(path)
}