mongo-shell
This module provides a container with a dagger shell.Installation
dagger install gitea.com/levlaz/dagger-mongo-shell@a8725931dc125eb90479506052a6edb6d41fba1f
Entrypoint
Return Type
MongoShell !
Example
dagger -m gitea.com/levlaz/dagger-mongo-shell@a8725931dc125eb90479506052a6edb6d41fba1f call \
func (m *myModule) example() *MongoShell {
return dag.
MongoShell()
}
@function
def example() -> dag.MongoShell:
return (
dag.mongo_shell()
)
@func()
example(): MongoShell {
return dag
.mongoShell()
}
Types
MongoShell 🔗
shell() 🔗
Return mongosh container
Return Type
Container !
Example
dagger -m gitea.com/levlaz/dagger-mongo-shell@a8725931dc125eb90479506052a6edb6d41fba1f call \
shell
func (m *myModule) example() *Container {
return dag.
MongoShell().
Shell()
}
@function
def example() -> dagger.Container:
return (
dag.mongo_shell()
.shell()
)
@func()
example(): Container {
return dag
.mongoShell()
.shell()
}