Last active
April 3, 2020 06:05
-
-
Save kenornotes/b794c26b815f4419dd0f1c118edf9823 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --name=acdb -d -p 3306:3306 --env MYSQL_ROOT_PASSWORD=root mysql/mysql-server:5.7 | |
CREATE USER 'ac'@'%' IDENTIFIED BY 'ac'; | |
GRANT ALL PRIVILEGES ON * . * TO 'ac'@'%'; | |
FLUSH PRIVILEGES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment