-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optional config for roundcube #267
Comments
For additional config files we have the /var/roundcube/config volume which is loaded pretty much the same way you propose here except that the for loop is done in the docker-entrypoint and not in PHP: I don't see the benefit of the way you propose to what we already have. Please clarify if I seem to miss something here. |
I was struggling with docker and plugins, especially the authres_status plugin. When using the env plugin settings, the container kept crashing. So I made 2 volumes: /var/www/html/config en /plugins. (roundcube_config resp roundcube_plugins) |
I wouldn't like to change our approach to extended configs without a good reason, so unless you can convince us that your setup really isn't feasible with the current approach, chances are not so good, to be honest. Did you check why your container had been crashing? |
Until we know why your container crashed we can't tell what happened and why your way of things helped. You should be able to still read the container output after it crashed, using You might also try with a newer image. |
Hey, so at the moment the only way to tweak roundcube config (say to add config for a plugin) is to replace a config file, I'd like to propose the following change
mkdir config/config.inc.d/
mv config/config.docker.inc.php config/config.inc.d/
replace the include line from config.inc.d to
We could mount various configs into that dir.
alternatively just have config.docker.inc.php check for a user include mounted into that dir and include that...
The text was updated successfully, but these errors were encountered: