Created
September 1, 2016 11:56
-
-
Save alexanderjamesking/a668338c9176c34981c5fef68281bedd to your computer and use it in GitHub Desktop.
Docker SQL
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 MySQL | |
docker run -p 3306:3306 --name local-mysql -e MYSQL_ROOT_PASSWORD=password -d mysql:latest --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci | |
mysql -h $(docker-machine ip) -uroot -ppassword |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment