Skip to content

Instantly share code, notes, and snippets.

@mthri
Created May 13, 2021 22:37
Show Gist options
  • Save mthri/de9b910c5a983cd9a738c7caf92f2ca5 to your computer and use it in GitHub Desktop.
Save mthri/de9b910c5a983cd9a738c7caf92f2ca5 to your computer and use it in GitHub Desktop.
solved mysql docker tcp connection
CREATE USER 'root'@'%' IDENTIFIED BY 'some_pass';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment