How to Dockerize your spring boot with mysql project
1. Deploy MySQL Image in a Container
Let's first deploy the MySQL image in a docker container.
Step1: Pull MySQL Image
docker pull mysql
Step 2: Create a docker network to communicate Spring boot application and MySQL database
docker network create ...
shohanur.hashnode.dev3 min read