php/7.2/alpine3.6/fpm/docker-php-entrypoint

10 lines
122 B
Plaintext
Raw Normal View History

2016-12-15 19:44:01 +01:00
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"