Skip to content

Running with swarm

Tommie McAfee edited this page Mar 20, 2017 · 5 revisions

Quick Start

Configure a local swarm

# init
docker swarm init

# get node ID
docker node ls -q
> 06sdvc8sv9aq37ac8zag0lu6s

# add node to the 'client' zone (**replace** with your ID from previous step)
docker node update  --label-add "zone=client"  06sdvc8sv9aq37ac8zag0lu6s

Clone this wiki locally