Files
WrenchBoradWeb/wrenchboard/scripts/docker-php-entrypoint
T
2022-07-31 14:56:41 +00:00

12 lines
150 B
Bash
Executable File

#!/bin/sh
set -e
/usr/local/bin/docker-boot
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"