Deploying Docker Compose Services in a Swarm

Deploying Docker Compose Services in a Swarm

Docker 1.13 introduced a new version of Docker Compose. The main feature of this release is that it allows services defined using Docker Compose files to be directly deployed to Docker Engine, enabled with Swarm mode. This enables simplified deployment of multi-container applications on multi-host setups.

This article will use a simple Docker Compose file to show how services are created and deployed in Docker 1.13.

[…]