Good afternoon, We are starting to develop new applications with microservices, contenders ... and we are finding a series of doubts about them that, even though we are looking for, we can not solve them 100%, the question is the following: We have developed several microservices and when entering them in the container we execute the following statement for each microservice that we created:
docker run -d -p 8080: 8080 --name micro1 micro-service-spring-boot: 0.0.1-SNAPSHOT
so if we have several microservices: micro1, micro2, ... microN we execute this previous statement as many times as we have microservices (so we have to change the port). The thing is that if all the microservices are deployed inside the container each one will have a different port. Is it possible that the microservices will be deployed in the same container and all have the same port and will only change the access route to it?