drupal
A simple Drupal development container and dependencies
Installation
dagger install github.com/jpadams/daggerverse/drupal@edca7e439bae5416d890de1a8fd2546483c1e075
Entrypoint
Return Type
Drupal
Example
dagger -m github.com/jpadams/daggerverse/drupal@edca7e439bae5416d890de1a8fd2546483c1e075 call \
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() 🔗
Returns a Container with Drupal and dev dependencies
Return Type
Container !
Example
dagger -m github.com/jpadams/daggerverse/drupal@edca7e439bae5416d890de1a8fd2546483c1e075 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()
}