498 words
2 min read

Install Docker Swarm on Ubuntu Server

By · Solutions Architect · Docker Captain · IBM Champion
Cover image for the post 'Install Docker Swarm on Ubuntu Server'

This is a straight, detailed walkthrough for getting Docker Swarm running on Ubuntu Server. No filler.

Docker Swarm is Docker’s own clustering tool. It takes a set of Docker servers and turns them into one cluster. The point is availability and performance: Swarm spreads the load across every Docker server in the cluster.

TIP

Architecture Context

Choose Docker Swarm when you need simple container orchestration with minimal operational complexity and built-in Docker integration. Amazon ECS, EKS, or GKE provide managed alternatives with richer ecosystem support. Swarm is justified for small-to-medium deployments where Kubernetes complexity is not warranted, or when your team’s Docker Compose expertise should transfer directly to orchestration.

IMPORTANT

Docker Engine and Docker Compose must be installed on the server.

For a step-by-step guide on installing Docker Engine on Ubuntu Server, see Install Docker Engine and Docker Compose on Ubuntu Server

IMPORTANT

OpenSSH must be installed on the server, and port 22 must be open to be able to connect to the server using the SSH protocol.

Need OpenSSH? Install it with:

Terminal window
sudo apt install openssh-server
NOTE

To connect to the server from a Windows system, you can use tools like PuTTY or MobaXterm.

NOTE

This guide walks you through connecting to a server with the iTerm2 terminal emulator on macOS.

CAUTION

You will need to open the following TCP and UDP ports for access to the services:

  • TCP port 2377 - for cluster management and Raft synchronization.
  • TCP and UDP port 7946 - for communication between all Docker Swarm servers.
  • UDP port 4789 - for network traffic (inbound container network).
  • IP Protocol 50 (ESP) - if you plan to use an encrypted network.

First, connect to the server where Swarm will live.

Find the server’s IP address:

Terminal window
ip a

Install Docker Swarm on Ubuntu Server - Step 1

Now initialize Swarm:

Terminal window
docker swarm init --advertise-addr 10.170.18.13

Install Docker Swarm on Ubuntu Server - Step 2

NOTE

10.170.18.13 is the IP address of my server. Accordingly, you need to specify the IP address of your server.

That’s it. Swarm is up.

The output prints a command. Run that command on another server and it joins the cluster as a worker.

NOTE

To prepare another server for the Docker Swarm cluster, you need to install only the Docker Engine on the new server and run the docker swarm join command with the appropriate token.

NOTE

For a step-by-step guide on installing Docker Engine on Ubuntu Server, see Install Docker Engine and Docker Compose on Ubuntu Server

Workers are one thing. You also want to be able to add more managers. Grab the manager join token:

Terminal window
docker swarm join-token manager

Install Docker Swarm on Ubuntu Server - Step 3

Same idea as before. The printed command joins another server to the cluster, this time with the manager role.

NOTE

To prepare another server for the Docker Swarm cluster, you need to install only the Docker Engine on the new server and run the docker swarm join command with the appropriate token.

One last check. Confirm Swarm is actually running:

Terminal window
docker info

Install Docker Swarm on Ubuntu Server - Step 4

The message back confirms it. Swarm is installed and working.


Vladimir Mikhalev

Docker Captain  ·  IBM Champion  ·  AWS Community Builder

The Verdict — production-tested analysis on YouTube.

The Verdict

Inconvenient truths about shipping in the AI era

Container security, platform engineering, and the agentic shift — tested in production, argued without the hype. The verdict reaches your inbox the moment there's one worth sending.

Related Posts

Same category
  1. 1
    Docker supply chain hardening — from Scout D to OpenSSF 7.8 on a 730K-pull image
    DevOps & Cloud · How I hardened a 730K-pull public Docker image from Scout grade D to OpenSSF Scorecard 7.8. Multi-stage build, cosign signing, SLSA provenance, non-root default, and the incident that changed how I ship attestations.
  2. 2
    Cloudflare Web Analytics on Astro — Why Removing GA4 Unlocked Lighthouse 100
    DevOps & Cloud · How removing Google Analytics 4 from an Astro site unlocked Lighthouse 100, why Cloudflare Web Analytics replaced it, and what the tradeoffs actually cost.
  3. 3
    Platform Engineering — The Complete, Practical Guide to Building Internal Developer Platforms That Scale
    DevOps & Cloud · A deep, practical guide to Platform Engineering. Learn how to build internal developer platforms, golden paths, GitOps workflows, and scalable cloud foundations.
  4. 4
    Amazon Q vs DevOps Chaos — Can This AI Fix AWS Faster Than You?
    DevOps & Cloud · Fix AWS issues faster with Amazon Q, the AI assistant built for DevOps. Real-world examples, limitations, and how it compares to ChatGPT.

Random Posts

Random
  1. 1
    Install Bitwarden on Ubuntu Server 22.04 LTS
    Self-Hosting · Learn how to install Bitwarden on Ubuntu Server 22.04 LTS using Docker. Step-by-step instructions for setup, SSL with Let's Encrypt, and secure password storage.
  2. 2
    Simplifying the Transition from Docker Compose to Kubernetes with Compose Bridge
    DevOps & Cloud · Discover how to convert Docker Compose files to Kubernetes manifests using Docker's Compose Bridge. Simplify your migration and deploy applications efficiently.
  3. 3
    Master Container Security in 2025 — Best Practices & Live Demo
    DevOps & Cloud · Master container security in 2025 with proven Docker & Kubernetes best practices. Learn how to automate scans using Docker Scout & Snyk with real demos.
  4. 4
    Mastering Docker Scout through Docker Desktop GUI and CLI
    DevOps & Cloud · Master Docker Scout with hands-on GUI and CLI examples. Learn to scan, analyze, and secure container images using advanced techniques and real-world workflows.
Install Docker Swarm on Ubuntu Server
https://heyvaldemar.com/install-docker-swarm-on-ubuntu-server/
Author
Vladimir Mikhalev
Published
2020-12-26
License
CC BY-NC-SA 4.0