Using Nginx as a Reverse Proxy for Developing Microservices with Docker Compose
I've recently started using Docker for my development environment. One of the first problems I ran into was how to run multiple Docker Compose microservice projects on the same host if they all need to run on the same port (port 80 for example).
I will outline one of the solutions that involves using Nginx as a reverse proxy to send requests to the correct backend microservice.
Read More
