fix: php binary name

This commit is contained in:
Dmitry Seleznyov
2023-01-28 14:27:19 +03:00
parent 9af5f5eeed
commit c9457fc991

View File

@@ -17,7 +17,7 @@ db_wait() {
db_migrate() { db_migrate() {
if [[ "${PHPBB_DB_AUTOMIGRATE}" = "true" && "${PHPBB_INSTALL}" != "true" ]]; then if [[ "${PHPBB_DB_AUTOMIGRATE}" = "true" && "${PHPBB_INSTALL}" != "true" ]]; then
echo "$(date) - applying migrations" echo "$(date) - applying migrations"
su-exec apache php8 bin/phpbbcli.php db:migrate su-exec apache php bin/phpbbcli.php db:migrate
fi fi
} }