Files
Phraseanet/docker/builder/root/bootstrap/entrypoint.sh
2020-03-12 12:26:10 +01:00

18 lines
230 B
Bash
Executable File

#!/bin/bash
if [ -d /bootstrap/entrypoint.d ]; then
for i in /bootstrap/entrypoint.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
if [ ! -t 1 ] ; then
echo "No tty available."
exit 0
fi
exec "$@"