7 lines
88 B
Bash
7 lines
88 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Run our web init startup
|
||
|
/sbin/init php-fpm &
|
||
|
|
||
|
exec ./artisan server:start
|