You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2022. It is now read-only.
I've tried following the specified directions and can't seem to boot up the image.
running docker-compose up -d mysql doesn't allow me to log into mysql with the specified password via docker exec. To fix this I execute docker run ... which allows me to login. However, both approaches result in the following error
...
+ echo 'Testing MySQL admin credentials correctness...'
Testing MySQL admin credentials correctness...
+ mysql_wrapper -hmysql -uroot
+ echo 'show databases'
+ echo -e '\n\n\tProvided MySQL admin credentials are incorrect\n'
Provided MySQL admin credentials are incorrect
++ whoami
+ echo -e 'Please create ~root/.my.cnf with right password like this\n'
Please create ~root/.my.cnf with right password like this
...
The password is being passed through correctly via the env variables (it's echoed out above the error message) however it seems like it's not logging in
I've tried following the specified directions and can't seem to boot up the image.
running
docker-compose up -d mysqldoesn't allow me to log into mysql with the specified password viadocker exec. To fix this I executedocker run ...which allows me to login. However, both approaches result in the following errorThe password is being passed through correctly via the env variables (it's echoed out above the error message) however it seems like it's not logging in
Any ideas??