2023-02-11 00:37:09 -03:00
|
|
|
#!/bin/sh
|
2023-02-12 12:50:41 -03:00
|
|
|
|
2023-02-12 13:35:16 -03:00
|
|
|
# Due to an issue with Docker's 'CMD' directive, the following scripts are not executing as expected.
|
|
|
|
# This workaround has been implemented to resolve the issue for now
|
|
|
|
sh "docker/php/prepare.sh"
|
|
|
|
sh "docker/server/prepare.sh"
|
|
|
|
|
2023-02-12 14:34:38 -03:00
|
|
|
/bin/sh -c /usr/sbin/php-fpm7
|
2023-02-12 12:50:41 -03:00
|
|
|
|
2023-02-12 13:35:16 -03:00
|
|
|
exec nginx -g "daemon off;"
|