php/8.0/alpine3.15/fpm/docker-php-entrypoint

10 lines
122 B
Plaintext
Raw Normal View History

2019-01-31 20:30:42 +01:00
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"