Inter-service messaging with ZeroMQ and Node.js
ZeroMQ is small, fast and very easy to use messaging library, which works equally well both within the same process and over the network. Despite being written …
Blog about DevOps, distributed applications and microservices
ZeroMQ is small, fast and very easy to use messaging library, which works equally well both within the same process and over the network. Despite being written …
Everybody talks how good microservices are, but it’s less popular subject what challenges it brings. As any other tool it is good at solving one kind of problems, …
What is docker-compose Like docker itself allows managing single container, docker-compose makes it easy to control not just one, but all containers that make distributed app. …
Having an app running from within Docker container is fun, that’s for sure. But do you know what would be even more fun? Many apps running from within …
Imagine you have Node.js app you would like to run from within Docker container. Maybe you want to check if it still works on ‘another’ …
What’s Docker. On the surface Docker looks like another virtual machine (VM). Just pick Ubuntu image with hello-world app inside, type docker run ubuntu hello-world in your terminal of choice, …
Recently I was asked to build a small internal app: dynamic dashboard for one of our projectors, which are hanging all over the office and display some company info …