We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be great if we could change the mariadb root host with an environment variable like you can on the official mariadb images eg. https://mariadb.com/kb/en/mariadb-docker-environment-variables/#mariadb_root_host-mysql_root_host. The default appears to be root@localhost which is fine and secure, but the option to change it would be useful.
root@localhost
We use parallel tests, this requires root@% to create databases, eg laggon_1, lagoon_2, etc. This cannot be done with root@localhost
root@%
laggon_1
lagoon_2
We have added an additional entrypoint that adds root@% but it is a bunch of extra code that could be avoided.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Request
It would be great if we could change the mariadb root host with an environment variable like you can on the official mariadb images
eg. https://mariadb.com/kb/en/mariadb-docker-environment-variables/#mariadb_root_host-mysql_root_host. The default appears to be
root@localhost
which is fine and secure, but the option to change it would be useful.Reasoning
We use parallel tests, this requires
root@%
to create databases, eglaggon_1
,lagoon_2
, etc. This cannot be done withroot@localhost
Workaround
We have added an additional entrypoint that adds
root@%
but it is a bunch of extra code that could be avoided.The text was updated successfully, but these errors were encountered: