Files
BSQBD/build/entrypoint.sh
T

9 lines
150 B
Bash
Raw Normal View History

2026-03-24 06:57:33 +01:00
#!/bin/sh
set -e
if [ "${1%.tmpl}" != "$1" ]; then
cat "$1" | envsubst > /etc/redis.conf
set -- /etc/redis.conf
fi
docker-entrypoint.sh "$@"