Docker is the defacto standard for container management and it made using containers a breeze. It provides tools to create, share and deploy containers.
You will need Docker and docker-compose to run the generated database images and for the development of microservices:
- Check for Docker by running docker -v in a terminal. It should display a version number.
- Check for docker-compose by running docker-compose -v in a Terminal. It should display a version number. If you are on Mac or Linux you could just run docker -v && docker-compose -v together.
- If the command is not found, you can visit the Docker website (https://docs.docker.com/install/) and follow the instructions to install it. Also, install Docker Compose (https://docs.docker.com/compose/install/ ...