Quick intro to docker-compose
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. …
Blog about DevOps, distributed applications and microservices
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 …