Hi, I am using this docker compose image: https://github.com/mondediefr/docker-flarum
Every time I run docker compose down and docker compose up -d again, I have to activate the flarum extensions manually on the admin site.
Is there a way to activate the extensions from CLI, or is there any php flarum command?
I would like to activate/enable this extensions by default: flarum-lang/german, fof/recaptcha, fof/user-directory and fof/upload.
I recognize that these extensions are already in the mariadb:
INSERT INTO flarum_settings VALUES ('allow_post_editing','reply'),('allow_renaming','10'),('allow_sign_up','1'),('custom_less',''),('default_locale','de'),('default_route','/all'),('display_name_driver','username'),('extensions_enabled','[\"flarum-suspend\",\"flarum-flags\",\"fof-user-directory\",\"fof-upload\",\"fof-recaptcha\",\"flarum-tags\",\"flarum-subscriptions\",\"flarum-sticky\",\"flarum-statistics\",\"flarum-mentions\",\"flarum-markdown\",\"flarum-lock\",\"flarum-likes\",\"flarum-lang-german\",\"flarum-lang-english\",\"flarum-emoji\",\"flarum-bbcode\",\"flarum-approval\"]'),...
but not activated by default. Thanks for any help.