entrypoint.sh 129 B

123456789101112
  1. #!/bin/sh
  2. /wait_for_db.sh
  3. echo "Got response from DB"
  4. for script in /var/entrypoint.d/*.sh; do
  5. $script
  6. done
  7. exec php-fpm