php-fpm8-image/docker-php-entrypoint

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 "$@"