https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04 Install docker and check status sudo docker --version .Install Docker UI , it would be easy to manage docker containers, images, IP, portLearn basic commands of docker like sudo docker ps will list out running processes( containers) refer this more https://docs.docker.com/reference/When you run an image a container start with alpine version of linux by … Continue reading Introduction to Docker
Tag: new-tech-stack
Introduction to Rabbit MQ
Rabbit MQ Messages are not published directly to a queue, instead, the producer sends messages to an exchange. An exchange is responsible for the routing of the messages to the different queues. An exchange accepts messages from the producer application and routes them to message queues with the help of bindings and routing keys. A … Continue reading Introduction to Rabbit MQ