September 2019
Intermediate to advanced
668 pages
15h 59m
English
To be able to use Docker Compose, we need to create a configuration file, docker-compose.yml, that describes the microservices Docker Compose will manage for us. We also need to set up Dockerfiles for the remaining microservices and add a Docker-specific Spring profile to each of them.
All four microservices have their own Dockerfile, but they all look the same as the preceding one. You can find them here:
When it comes to the Spring profiles, the three ...