Introduction
Learn about the past and currently existing technologies for container management.
A brief about technologies
Technology is changing so fast that it is very hard, if not impossible, to keep up with. Sometimes the moment we learn about a new technology, it is already obsolete and replaced with something else.
Take containers as an example. Docker appeared only a few years ago, and everyone is already using it for a lot of scenarios. Still, even though it is a very new product, it has changed many times over. Just when developers learned how to use docker run
, they were told that it is obsolete and should be replaced with docker-compose up
. They started converting all our docker run
commands into the Compose YAML format.
The moment they finished the ...