Skip to content

Instantly share code, notes, and snippets.

@tblancog
Created December 24, 2021 16:27
Show Gist options
  • Save tblancog/3ca182880e2aad8bcbd8257ab54f7ae6 to your computer and use it in GitHub Desktop.
Save tblancog/3ca182880e2aad8bcbd8257ab54f7ae6 to your computer and use it in GitHub Desktop.
Dockerized mysql
docker run --name database-name-mysql -v /my/local/path:/var/lib/mysql -p 3306:3306 -e MYSQL_USER=db_dbuser -e MYSQL_PASSWORD=SOMEPASSWORD -e MYSQL_DATABASE=DATABASE-NAME -e MYSQL_ROOT_PASSWORD=root-password -d mysql:5.7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment