php/8.1/docker-php-entrypoint

10 lines
122 B
Plaintext
Raw Normal View History

2022-01-11 17:49:47 +00:00
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"