From c9457fc99152aaec5ffee2d39d1801d9dcd15f9f Mon Sep 17 00:00:00 2001 From: Dmitry Seleznyov Date: Sat, 28 Jan 2023 14:27:19 +0300 Subject: [PATCH] fix: php binary name --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 383d6da..d75cefa 100755 --- a/start.sh +++ b/start.sh @@ -17,7 +17,7 @@ db_wait() { db_migrate() { if [[ "${PHPBB_DB_AUTOMIGRATE}" = "true" && "${PHPBB_INSTALL}" != "true" ]]; then echo "$(date) - applying migrations" - su-exec apache php8 bin/phpbbcli.php db:migrate + su-exec apache php bin/phpbbcli.php db:migrate fi }