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