Skip to content

Docker Swarm

BK Jackson edited this page Jun 25, 2019 · 9 revisions

Docker Swarm Overview

The underlying logic of Docker swarm mode is a general purpose scheduler and orchestrator. - From How services work
To deploy an application image when Docker Engine is in swarm mode, you create a service. Frequently a service is the image for a microservice within the context of some larger application. Examples of services might include an HTTP server, a database, or any other type of executable program that you wish to run in a distributed environment. Covers tasks and scheduling.

Docker Swarm Mode Walkthrough
Create Cluster using docker swarm - In only two minutes.
Kubernetes vs Docker Swarm. Who’s the bigger and better? - Feb 1, 2019

Docker swarm nodes

How nodes work in swarm mode

Manager nodes:

Manager nodes handle cluster management tasks.

Worker nodes:

Worker nodes are also instances of Docker Engine whose sole purpose is to execute containers.

Articles

Create Cluster using docker swarm - July 29, 2018

Clone this wiki locally