php/8.1-rc/bullseye/fpm/docker-php-entrypoint
2023-03-30 17:46:24 -07:00

10 lines
122 B
Bash
Executable File
Generated

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