x86_64-alpine-php/docker-php-entrypoint
2021-01-21 11:38:36 +08: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 "$@"