Understanding Database Containerization
No local MySQL installation necessary
Setting up MySQL with Docker
Download MySQL image
$ docker pull mysql:latest
Confirm image
$ docker images
Create a container
$ docker run -d --name test-mysql -e MYSQL_ROOT_PASSWORD=strong_password -p 3...
tech.abhishekpatil.blog3 min read