Dagger
Search

drupal

No long description provided.

Installation

dagger install github.com/jpadams/daggerverse/drupal@79a0f534aaf530f19d775a6e71d90910ce995768

Entrypoint

Return Type
Drupal
Example
func (m *myModule) example() *Drupal  {
	return dag.
			Drupal()
}
@function
def example() -> dag.Drupal:
	return (
		dag.drupal()
	)
@func()
example(): Drupal {
	return dag
		.drupal()
}

Types

Drupal 🔗

base() 🔗

Return Type
Container !
Example
dagger -m github.com/jpadams/daggerverse/drupal@79a0f534aaf530f19d775a6e71d90910ce995768 call \
 base
func (m *myModule) example() *Container  {
	return dag.
			Drupal().
			Base()
}
@function
def example() -> dagger.Container:
	return (
		dag.drupal()
		.base()
	)
@func()
example(): Container {
	return dag
		.drupal()
		.base()
}