From d3268093ccb7b7fbdfae8769c0c475a4b241f7ce Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 16 Feb 2021 15:19:54 +0100 Subject: [PATCH] Revert "Install extensions after DB is up" This reverts commit 2dbd27028f4f9a27e24e836560971e998d69d984. Not the right fix! See https://git.autonomic.zone/coop-cloud/mediawiki/issues/21. --- entrypoint.sh.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index 2273ebc..145a70d 100755 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -75,10 +75,10 @@ install_extensions() { main() { set -eu - init_db - install_extensions + init_db + init_composer composer_install }