Microservice deployment using containers
You might have got the point about Docker after reading Chapter 1, A Solution Approach.
A Docker container provides a lightweight runtime environment, consisting of the core features of a virtual machine and the isolated services of operating systems, known as a Docker image. Docker makes the packaging and execution of microservices easier and smoother. Each operating system can have multiple Dockers, and each Docker can run single application.
Installation and configuration
Docker needs a virtualized server if you are not using a Linux OS. You can install VirtualBox or similar tools such as Docker Toolbox to make it work for you. The Docker installation page gives more details about it and lets you know how to do it. So, leave it to the Docker installation guide available on Docker's website.
You can install Docker, based on your platform, by following the instructions given at: https://docs.docker.com/engine/installation/.
DockerToolbox-1.9.1f was the...