php/8.1/alpine3.17/fpm/docker-php-entrypoint

10 lines
122 B
Plaintext
Raw Normal View History

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