...

/

Docker Compose and Orchestration

Docker Compose and Orchestration

Learn about Compose and how Docker facilitates orchestration.

Docker Compose

A single container is launched with a single docker command. An application requiring several containers, like Node.js, NGINX, and MongoDB, must be started with three commands. You could launch each in three terminals in the correct order (first MongoDB, then the Node.js application, then NGINX).

Docker Compose is a tool for ...