iteo/bin/docker-entrypoint.sh
2024-04-14 15:47:41 +02:00

13 lines
172 B
Bash
Executable File

#!/bin/sh
# fail on first error
set -e
run-parts --exit-on-error $(dirname $0)/docker-entrypoint.sh.d/
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"