php/8.1/docker-php-entrypoint
2022-01-11 18:49:47 +01:00

10 lines
122 B
Bash

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