6 lines
71 B
Bash
6 lines
71 B
Bash
#!/bin/sh
|
|
set -e
|
|
# php-fpm daemonize
|
|
php-fpm -D
|
|
# execute cmd
|
|
exec "$@" |