Quick Tools Deployment with Simple Docker Commands
Well, why set up databases (or other tools) on local machines when you can quickly spin one up using Docker in just minutes? Need MySQL or PostgreSQL? I've got you covered.
MySQL
docker run --rm -d \
-p 3306:3306 \
-e MYSQL_ROOT_PASSWORD=1234...
blog.mdminhazulhaque.io1 min read