From 6918baaa7bbebd635990d6c5b66f6af580f5cd43 Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Fri, 1 May 2026 04:42:53 -0700 Subject: [PATCH] Set default themes --- docker/php/entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/php/entrypoint.sh b/docker/php/entrypoint.sh index ce95336..8550db0 100644 --- a/docker/php/entrypoint.sh +++ b/docker/php/entrypoint.sh @@ -39,6 +39,11 @@ else $DRUSH en -y symfony_mailer echo "[entrypoint] Modules enabled." + echo "[entrypoint] Setting themes..." + $DRUSH theme:enable olivero claro + $DRUSH config:set system.theme default olivero -y + $DRUSH config:set system.theme admin claro -y + echo "[entrypoint] Themes set." if ls /var/www/html/config/sync/*.yml >/dev/null 2>&1; then echo "[entrypoint] Importing configuration from sync dir..." @@ -46,5 +51,6 @@ else fi fi + echo "[entrypoint] Starting services..." exec supervisord -c /etc/supervisor/conf.d/supervisord.conf