Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Last active April 20, 2018 14:25
Show Gist options
  • Select an option

  • Save GitHub30/ea769a24d7bc549e35eee3395fad88e1 to your computer and use it in GitHub Desktop.

Select an option

Save GitHub30/ea769a24d7bc549e35eee3395fad88e1 to your computer and use it in GitHub Desktop.
MySQL on Docker
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