Files
php-docker-library/7.0/stretch/cli/docker-php-entrypoint
2018-12-05 11:54:50 -08:00

10 lines
118 B
Bash
Executable File

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