Dockerizing microservices and registering on the Eureka server
-discovery-server -> the eureka server used for registering services
-movie-catalog-service -> service that gives list of movies the user has rated
-movie-ratings-service -> service that gives the rating the user has saved for a movie
-movie-info-service -> service that provides the information of a movie
-communicating between microservices in local using RestTemplate
-eureka server config-properties file changes and @EnableEurekaClient in application class
-changes in client server - app properties-eureka.client.register-with-eureka=true,eureka.client.fetch-registry=true
-configuring Dockerfiles for microservices
-running microservices individually in docker containers
commands
> docker build .
> docker run -p 8762:8761 <image_id>
-configuring yml file
-running in docker
commands
> docker-compose build --no-cache
> docker-compose up


