Last active
April 20, 2018 14:25
-
-
Save GitHub30/ea769a24d7bc549e35eee3395fad88e1 to your computer and use it in GitHub Desktop.
MySQL on Docker
This file contains hidden or 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 some-mysql -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes -d mysql --default-authentication-plugin=mysql_native_password | |
| docker exec some-mysql mysql --version | |
| docker start some-mysql | |
| docker stop some-mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment