<p class="wp-block-paragraph">That is the point. Mode is an enum, it can be “vip” or “dnsrr”.</p> <p class="wp-block-paragraph">As one easily guess, “vip” does not stand for Very Important Person.</p> <p class="wp-block-paragraph">Why should you have the option to assign a Virtual IP or load balance the traffic by DNS Round Robin policy?</p> <p class="wp-block-paragraph">I asked this question […]
Tag: docker
Dive into (useless?) uncovered case of multistage dockerfile
<p class="wp-block-paragraph">Looking at the upstream documentation of <a href="https://docs.docker.com/build/building/multi-stage/">Multi-stage builds</a> there are some examples but this is missing:</p> <p class="wp-block-paragraph">Ok, I mean, the example by itself is useless, but “it works”. Try:</p> <p class="wp-block-paragraph"><code>docker build -f Dockerfile -t copiedfrom-rust:v0.1 .</code></p> <p class="wp-block-paragraph">Then:</p> <p class="wp-block-paragraph"><code>docker run -it copiedfrom-rust:v0.1 sh</code></p> <h2 class="wp-block-heading">Real use case scenario</h2> <p class="wp-block-paragraph">Lets […]
My 2 days Journey on moving services to a swarm
<p class="wp-block-paragraph">I work for starsellersworld.com, I wanted my company start to use tool for tracking project development in a centralized way, Jira was expensive as resource, and I can not ask such a step, so I asked a machine were to run <strong>Redmine</strong>. Then it cames the <strong>gogs</strong>, and, after little time, <strong>Jenkins</strong>.</p> <p class="wp-block-paragraph">A […]
How to compile zmq-beta for php docker image: does the C compiler works?
<p class="wp-block-paragraph">I spent 2 hours of what it lasts of my life trying to understand what was the problem on installing php’s zmq extension in a docker running alpine as base image. I would like to share my experience here.</p> <p class="wp-block-paragraph">During morning I would like to write supporting class for integrating zmq into our […]