new file: Jenkinsfile new file: docker-php-entrypoint new file: docker-php-ext-configure new file: docker-php-ext-enable new file: docker-php-ext-install new file: docker-php-source Initial commit
10 lines
122 B
Bash
Executable File
10 lines
122 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- php-fpm "$@"
|
|
fi
|
|
|
|
exec "$@"
|