mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
382 B
Bash
14 lines
382 B
Bash
#!/usr/bin/env sh
|
|
|
|
#ddev-generated
|
|
## Description: Run redis-cli inside the Redis container
|
|
## Usage: redis-cli [flags] [args]
|
|
## Example: "ddev redis-cli KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version"
|
|
## Aliases: redis
|
|
|
|
if [ -f /etc/redis/conf/security.conf ]; then
|
|
redis-cli -p 6379 -h redis -a redis --no-auth-warning $@
|
|
else
|
|
redis-cli -p 6379 -h redis $@
|
|
fi
|