Microservices Deployments
- Running each microservice on Container is possibly the best option to deploy microservice based applications
- Advantages:
- Individual Microservice can be scaled
Container
- Todays Definition: Container is an isolated area which has every thing to run the application
Role in Docker as a DevOps Engineer
- First expectation is to do something to make your application run inside container (Contenarization).
First Steps towards Containerization
- Installing Docker
- At this moment lets not install docker but use Docker Playground
- Create an account in Docker Hub
- Run the below commands
docker info docker container ls docker image ls docker run hello-world
- Understanding Docker Image and Docker Container