entrypoint.sh 298 B

12345678910
  1. #!/bin/sh
  2. # Due to an issue with Docker's 'CMD' directive, the following scripts are not executing as expected.
  3. # This workaround has been implemented to resolve the issue for now
  4. sh "docker/php/prepare.sh"
  5. sh "docker/server/prepare.sh"
  6. /bin/sh -c /usr/sbin/php-fpm8
  7. exec nginx -g "daemon off;"