docker-bootstrap-collection
docker-bootstrap-collection copied to clipboard
Update 01-databases.sql
Two proposed changes here:
- Update the comment marker from
#
to--
(SQL standard). - From mysql 8 on we can't
create a user with the grant command
. If you create the user with'<username>'@'localhost'
and then try toGRANT .... TO "<username>"@"%" ...
, since the "host" is differente (localhost
x%
) it will try to "create a new user", thus it will fail to start.