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
sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
7
+
sudo docker run \
8
+
-d \
9
+
-e MYSQL_ALLOW_EMPTY_PASSWORD=yes \
10
+
-e MYSQL_DATABASE=doctrine_tests \
11
+
-p 33306:3306 \
12
+
--name mysql57 \
13
+
mysql:5.7
22
14
15
+
sudo docker exec -i mysql57 bash <<<'until echo \\q | mysql doctrine_tests > /dev/null 2>&1 ; do sleep 1; done'
0 commit comments