Skip to content

Swarm: a Docker-native clustering system

License

Apache-2.0, CC-BY-SA-4.0 licenses found

Licenses found

Apache-2.0
LICENSE.code
CC-BY-SA-4.0
LICENSE.docs
Notifications You must be signed in to change notification settings

kolyshkin/swarm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

swarm: docker clustering

Example usage

# create a cluster
$ swarm create
6856663cdefdec325839a4b7e1de38e8

# on each of your nodes, start the swarm agent
$ docker run -d -p 4243:4243 swarm join --token=6856663cdefdec325839a4b7e1de38e8 --addr=<docker_daemon_ip:4243>

# start the manager on any machine or your laptop
$ docker run -d -p 4243:4243 swarm manage --token=6856663cdefdec325839a4b7e1de38e8 --addr=<ip:4243>

# use the regular docker cli
$ docker -H <ip:4243> ps 
$ docker -H <ip:4243> run ... 
$ docker -H <ip:4243> info
...

Creators

Andrea Luzzardi

Victor Vieux

Copyright and license

Code and documentation copyright 2014 Docker, inc. Code released under the Apache 2.0 license. Docs released under Creative commons.

About

Swarm: a Docker-native clustering system

Resources

License

Apache-2.0, CC-BY-SA-4.0 licenses found

Licenses found

Apache-2.0
LICENSE.code
CC-BY-SA-4.0
LICENSE.docs

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 72.9%
  • Shell 27.0%
  • Roff 0.1%