mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
8 lines
244 B
Bash
Executable file
8 lines
244 B
Bash
Executable file
#!/bin/bash
|
|
#ddev-generated
|
|
## Description: Run redis-cli inside the redis container
|
|
## Usage: redis-cli [flags] [args]
|
|
## Example: "redis-cli KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version"
|
|
|
|
exec redis-cli -p 6379 -h redis "$@"
|