Using private registry in Docker Swarm
In one of my previous posts about Docker health checks closer to the end of the post I managed to build a Dockerfile and run it …
Blog about DevOps, distributed applications and microservices
In one of my previous posts about Docker health checks closer to the end of the post I managed to build a Dockerfile and run it …
Kubernetes (or K8s) is another tool for orchestrating containerized apps in a cluster. It’s job is to find the right place for a container, fulfill its desired …
Somehow I missed the news that starting from version 1.12 Docker containers support health checks. Such checks don’t just test if container itself is running, but …
Imagine you configured your new shiny Docker cluster and now ready to fill it with dockerized applications. How exactly are you going to do that? Not …
Docker is cool. It is a great tool to pack your application into set of containers, throw them into the host and they’ll just work. However, …
Quite often building a VM from scratch is not very wise. Unless server configuration is trivial, its provisioning might take significant amount of time. For example, creating an instance …
Using Vagrant for creating Consul cluster on Linux probably was fun. But what about Windows hosts? Believe it or not, but more than half of developers are …
Last two articles about Consul service discovery involved one simple but extremely boring manual task: creating and configuring a cluster. In fact, I had to …
In previous post we created a small Consul cluster which kept track of 4 services in it: two web services and two db‘s. However, we didn’t …
Imagine your distributed app has two kinds of services: web and db. Both of them are replicated for higher availability, live on different hosts, go …