Skip to content

Commit

Permalink
Merge pull request docker-library#3 from mysql/revert-2-patch-1
Browse files Browse the repository at this point in the history
Revert "Fix for bug#81723"
  • Loading branch information
ltangvald committed Jun 7, 2016
2 parents 478010b + 56d263f commit da99dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 5.7/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if [ "$1" = 'mysqld' ]; then
-- What's done in this file shouldn't be replicated
-- or products like mysql-fabric won't work
SET @@SESSION.SQL_LOG_BIN=0;
DELETE FROM mysql.user where user NOT IN ('mysql.sys', 'mysqlxsys');
DELETE FROM mysql.user where user != 'mysql.sys';
CREATE USER 'root'@'%' IDENTIFIED BY '${MYSQL_ROOT_PASSWORD}' ;
GRANT ALL ON *.* TO 'root'@'%' WITH GRANT OPTION ;
DROP DATABASE IF EXISTS test ;
Expand Down

0 comments on commit da99dee

Please sign in to comment.