Initial commit

This commit is contained in:
Hans Rakers
2018-12-17 11:59:51 +01:00
parent 141a2e9320
commit a34fbf5f9d
4 changed files with 283 additions and 0 deletions

9
docker-php-entrypoint Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"