Forked from jmshal/create-multi-host-swarm-digitalocean.sh
Created
July 25, 2016 20:52
-
-
Save ricebeans/a0e28dce177715e40748364d4ebada0a to your computer and use it in GitHub Desktop.
Setup a Docker Swarm multi-host cluster on DigitalOcean
This file contains hidden or 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=nyc3 \ | |
| --digitalocean-private-networking=true \ | |
| --digitalocean-image=ubuntu-15-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=2gb \ | |
| --digitalocean-region=nyc3 \ | |
| --digitalocean-private-networking=true \ | |
| --digitalocean-image=ubuntu-15-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=2gb \ | |
| --digitalocean-region=nyc3 \ | |
| --digitalocean-private-networking=true \ | |
| --digitalocean-image=ubuntu-15-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