redis
No long description provided.
Installation
dagger install github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718
Entrypoint
Return Type
Redis
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
func (m *MyModule) Example() *dagger.Redis {
return dag.
Redis()
}
@function
def example() -> dagger.Redis:
return (
dag.redis()
)
@func()
example(): Redis {
return dag
.redis()
}
Types
Redis 🔗
port() 🔗
Return Type
IntegerKind !
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
port
func (m *MyModule) Example() {
return dag.
Redis().
Port()
}
@function
def example() -> :
return (
dag.redis()
.port()
)
@func()
example(): {
return dag
.redis()
.port()
}
version() 🔗
Return Type
StringKind !
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
version
func (m *MyModule) Example() {
return dag.
Redis().
Version()
}
@function
def example() -> :
return (
dag.redis()
.version()
)
@func()
example(): {
return dag
.redis()
.version()
}
password() 🔗
Return Type
Secret !
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
password
func (m *MyModule) Example() {
return dag.
Redis().
Password()
}
@function
def example() -> :
return (
dag.redis()
.password()
)
@func()
example(): {
return dag
.redis()
.password()
}
withPort() 🔗
Return Type
Redis !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
port | IntegerKind ! | - | No description provided |
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
with-port
func (m *MyModule) Example(port ) {
return dag.
Redis().
WithPort(port)
}
@function
def example(port: ) -> :
return (
dag.redis()
.with_port(port)
)
@func()
example(port: ): {
return dag
.redis()
.withPort(port)
}
withVersion() 🔗
Return Type
Redis !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
version | StringKind ! | - | No description provided |
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
with-version
func (m *MyModule) Example(version ) {
return dag.
Redis().
WithVersion(version)
}
@function
def example(version: ) -> :
return (
dag.redis()
.with_version(version)
)
@func()
example(version: ): {
return dag
.redis()
.withVersion(version)
}
withPassword() 🔗
Return Type
Redis !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
password | Secret ! | - | No description provided |
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
with-password
func (m *MyModule) Example(password ) {
return dag.
Redis().
WithPassword(password)
}
@function
def example(password: ) -> :
return (
dag.redis()
.with_password(password)
)
@func()
example(password: ): {
return dag
.redis()
.withPassword(password)
}
cli() 🔗
Return Type
Cli !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
server | Service ! | - | No description provided |
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
cli
func (m *MyModule) Example(server ) {
return dag.
Redis().
Cli(server)
}
@function
def example(server: ) -> :
return (
dag.redis()
.cli(server)
)
@func()
example(server: ): {
return dag
.redis()
.cli(server)
}
server() 🔗
Return Type
Container !
Example
dagger -m github.com/quartz-technology/daggerverse/redis@78470ce280ba8f8f0d6bf52ac8596beae14e0718 call \
server
func (m *MyModule) Example() {
return dag.
Redis().
Server()
}
@function
def example() -> :
return (
dag.redis()
.server()
)
@func()
example(): {
return dag
.redis()
.server()
}
Cli 🔗
ctr() 🔗
Return Type
Container !
Example
Function RedisCli.Ctr is not accessible from the redis module
Function RedisCli.Ctr is not accessible from the redis module
Function RedisCli.Ctr is not accessible from the redis module
Function RedisCli.Ctr is not accessible from the redis module
container() 🔗
Return Type
Container !
Example
Function RedisCli.container is not accessible from the redis module
Function RedisCli.container is not accessible from the redis module
Function RedisCli.container is not accessible from the redis module
Function RedisCli.container is not accessible from the redis module
set() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
key | StringKind ! | - | No description provided |
value | StringKind ! | - | No description provided |
Example
Function RedisCli.set is not accessible from the redis module
Function RedisCli.set is not accessible from the redis module
Function RedisCli.set is not accessible from the redis module
Function RedisCli.set is not accessible from the redis module
get() 🔗
Return Type
StringKind !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
key | StringKind ! | - | No description provided |
Example
Function RedisCli.get is not accessible from the redis module
Function RedisCli.get is not accessible from the redis module
Function RedisCli.get is not accessible from the redis module
Function RedisCli.get is not accessible from the redis module