Forked from jmshal/create-multi-host-swarm-digitalocean.sh
Last active
August 2, 2016 00:44
-
-
Save hisea/99cb2d959d4ad9bbe63bb782f198bc97 to your computer and use it in GitHub Desktop.
Setup a Docker Swarm multi-host cluster on DigitalOcean
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker-machine create \ | |
--driver=digitalocean \ | |
--digitalocean-access-token=$DO_TOKEN \ | |
--digitalocean-size=512mb \ | |
--digitalocean-region=tor1 \ | |
--digitalocean-private-networking=true \ | |
--digitalocean-image=ubuntu-16-04-x64 \ | |
docker-swarm-kv-store | |
docker $(docker-machine config docker-swarm-kv-store) run -d \ | |
--net=host progrium/consul --server -bootstrap-expect 1 | |
kvip=$(docker-machine ip docker-swarm-kv-store) | |
docker-machine create \ | |
--driver=digitalocean \ | |
--digitalocean-access-token=$DO_TOKEN \ | |
--digitalocean-size=1gb \ | |
--digitalocean-region=tor1 \ | |
--digitalocean-private-networking=true \ | |
--digitalocean-image=ubuntu-16-04-x64 \ | |
--swarm \ | |
--swarm-master \ | |
--swarm-discovery consul://${kvip}:8500 \ | |
--engine-opt "cluster-store consul://${kvip}:8500" \ | |
--engine-opt "cluster-advertise eth1:2376" \ | |
docker-swarm-master | |
docker-machine create \ | |
--driver=digitalocean \ | |
--digitalocean-access-token=$DO_TOKEN \ | |
--digitalocean-size=1gb \ | |
--digitalocean-region=tor1 \ | |
--digitalocean-private-networking=true \ | |
--digitalocean-image=ubuntu-16-04-x64 \ | |
--swarm \ | |
--swarm-discovery consul://${kvip}:8500 \ | |
--engine-opt "cluster-store consul://${kvip}:8500" \ | |
--engine-opt "cluster-advertise eth1:2376" \ | |
docker-swarm-agent-1 | |
eval $(docker-machine env --swarm docker-swarm-master) | |
docker info |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment