redisShell
No long description provided.
Installation
dagger install github.com/quartz-technology/daggerverse/redis-shell@v0.0.1
Entrypoint
Return Type
RedisShell
Example
dagger -m github.com/quartz-technology/daggerverse/redis-shell@3b177a82780bf2dfe0f148e90608007cb1312e3c call \
func (m *myModule) example() *RedisShell {
return dag.
RedisShell()
}
@function
def example() -> dag.RedisShell:
return (
dag.redis_shell()
)
@func()
example(): RedisShell {
return dag
.redisShell()
}
Types
RedisShell 🔗
cli() 🔗
CLI returns a Container that runs the redis-cli command.
Return Type
Container !
Example
dagger -m github.com/quartz-technology/daggerverse/redis-shell@3b177a82780bf2dfe0f148e90608007cb1312e3c call \
cli
func (m *myModule) example() *Container {
return dag.
RedisShell().
Cli()
}
@function
def example() -> dagger.Container:
return (
dag.redis_shell()
.cli()
)
@func()
example(): Container {
return dag
.redisShell()
.cli()
}