...

/

Orchestration Basics

Orchestration Basics

We've been using the term 'orchestration' throughout the course. In this lesson, you'll learn what orchestration tools are and when to use them.

We'll cover the following...

In this chapter, we saw some tools (the --restart-mode switch, the docker stats command) that help keep your containers running and keep an eye on them. This is good for starters. However, if you rely on containers and/or have high workloads, using such tools and automating their use will become tedious.

Imagine coding calls to create or update containers, and to remove them when necessary. How will you update your containers when you publish new versions? Since running containers is cheap, you may ...