IsaacLevon
IsaacLevon

Reputation: 2580

Can Docker Swarm be ran on a single machine?

Is it possible to have the simplest architecture of Docker Swarm where a single server is both the manager and the worker? That is, every application is being ran on the manager's instance.

Upvotes: 0

Views: 462

Answers (1)

LTNB
LTNB

Reputation: 121

You can use docker swarm with a single node, but I recommend you use the docker-compose.

docker swarm init

Upvotes: 2

Related Questions