Docker is a great tool (the "de facto" standard) to build Linux containers.
Docker Compose is great to develop locally with Docker, in a replicable way.
Docker Swarm Mode is great to deploy your application stacks to production, in a distributed cluster, using the same files used by Docker Compose locally.
So, with Docker Swarm Mode you have:
Replicability, use the same files as when developing locally.
Simplicity and speed for development and deployment.
Robustness and security, with fault-tolerant clusters.
Create a new remote VPS ("virtual private server").
Deploy the latest Ubuntu LTS ("long term support") version. At the time of this writing it's Ubuntu 18.04.
Connect to it via SSH, e.g.:
sshroot@192.0.2.175
Define a server name using a subdomain of a domain you own, for example dog.example.com.
Make sure the subdomain DNS records point to your VPS's IP address.
Create a temporal environment variable with the name of the host to be used later, e.g.:
exportUSE_HOSTNAME=dog.example.com
Set up the server hostname:
# Set up the server hostnameecho$USE_HOSTNAME>/etc/hostname
hostname-F/etc/hostname
Note: If you are not a root user, you might need to add sudo to these commands. The shell will tell you when you don't have enough permissions. Note that sudo does not preserve environment variables by default, but this can be enabled via the -E flag.
Update packages:
# Install the latest updatesapt-getupdate
apt-getupgrade-y
...or alternatively, run the official convenience script:
# Download Dockercurl-fsSLget.docker.com-oget-docker.sh
# Install Docker using the stable channel (instead of the default "edge")CHANNEL=stableshget-docker.sh
# Remove Docker install scriptrmget-docker.sh
If you are setting up multiple nodes (servers/VPSs), repeat these steps for each one.
Make sure you use a different domain/subdomain for each node.
In Docker Swarm Mode you have one or more "manager" nodes and one or more "worker" nodes (that can be the same manager nodes).
The first step is to configure one (or more) manager nodes.
On the main manager node, run:
dockerswarminit
Note: if you see an error like:
Error response from daemon: could not choose an IP address to advertise since this system has multiple addresses on interface eth0 (198.51.100.48 and 10.19.0.5) - specify one with --advertise-addr
...select the public IP (e.g. 198.51.100.48 in this example), and run the command again with --advertise-addr, e.g.:
Check that the cluster has all the nodes connected and set up:
dockernodels
It outputs something like:
ID HOSTNAME STATUS AVAILABILITY MANAGER STATUS ENGINE VERSION
ndcg2iavasdfrm6q2qwere2rr * dog.example.com Ready Active Leader 18.06.1-ce
3jrutmd3asdf1ombqwerr9svk cat.example.com Ready Active Reachable 18.06.1-ce
i9ec9hjasdfaoyyjqwerr3iqa snake.example.com Ready Active Reachable 18.06.1-ce
You have a distributed Docker swarm mode cluster set up.
Check other sections in the documentation at https://dockerswarm.rocks to see how to set up HTTPS, you still have time, the 20 minutes are not over yet.