Docker - Swarm (Cluster)

Card Puncher Data Processing

Docker - Swarm (Cluster)

About

Swarm is an distributed app scheduler service.

A swarm consists of a cluster of Docker hosts (running in swarm mode) which act as:

  • managers (to manage membership and delegation)
  • workers (which run swarm services).

A given Docker host can be a manager, a worker, or perform both roles.

When you create a service, you define its optimal state (number of replicas, network and storage resources available to it, ports the service exposes to the outside world, and more). Docker works to maintain that desired state.

Management

Init

docker swarm init

Stop

  • Take down a single node swarm from the manager
docker swarm leave --force      

Visualizer

https://github.com/ManoMarks/docker-swarm-visualizer

Documentation / Reference





Discover More
Docker Machine Virtualbox
Docker - docker-machine

swarmdocker commandswarm command docker/machine Docker Machine is a command line client that lets you manage your Docker host (virtual host or machine, daemon) and install Docker Engine on them....



Share this page:
Follow us:
Task Runner