compose
No long description provided.
Installation
dagger install github.com/wingyplus/daggerverse/compose@b4d24011f88f8798ba548d0093c86c2bb70c2b82Entrypoint
Return Type
ComposeExample
dagger -m github.com/wingyplus/daggerverse/compose@b4d24011f88f8798ba548d0093c86c2bb70c2b82 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 🔗
Compose is root GraphQL type for Docker 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 | String ! | - | No description provided | 
Example
dagger -m github.com/wingyplus/daggerverse/compose@b4d24011f88f8798ba548d0093c86c2bb70c2b82 call \
 with-file --path stringfunc (m *MyModule) Example(path string) *dagger.Container  {
	return dag.
			Compose().
			WithFile(path)
}@function
def example(path: str) -> dagger.Container:
	return (
		dag.compose()
		.with_file(path)
	)@func()
example(path: string): Container {
	return dag
		.compose()
		.withFile(path)
}