mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-11 09:23:36 +08:00
10 lines
192 B
Bash
10 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 "$@"
|