mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-11 09:23:36 +08:00
11 lines
192 B
Bash
11 lines
192 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Run redis with a password if provided
|
||
|
if [ -n "$REDIS_HOST_PASSWORD" ]; then
|
||
|
exec redis-server --requirepass "$REDIS_HOST_PASSWORD"
|
||
|
else
|
||
|
exec redis-server
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|