Skip to content

Instantly share code, notes, and snippets.

@ashrafuzzaman
Forked from prologic/swarm-create
Last active January 26, 2017 18:09
Show Gist options
  • Save ashrafuzzaman/e5e578631ccef18b9fd6 to your computer and use it in GitHub Desktop.
Save ashrafuzzaman/e5e578631ccef18b9fd6 to your computer and use it in GitHub Desktop.
bash script to create docker swarm cluster with docker machine and virtualbox
#!/bin/bash
# Script para generar entorno simulado de cluster Swarm con 3 nodos
# Creación de maquina default (se utilizara como cliente )
# docker-machine create -d virtualbox default
eval $(docker-machine env default)
# Lanzamos swarm desde maquina default
SWARM_TOKEN=$(docker run swarm create)
echo "SWARM_TOKEN: $SWARM_TOKEN" >> swarm_token.txt
# Creación de maquina Swarm Master
docker-machine create -d virtualbox --swarm --swarm-master --swarm-discovery token://$SWARM_TOKEN swarm-master
docker-machine ls
# Creación de Nodos
docker-machine create -d virtualbox --swarm --swarm-discovery token://$SWARM_TOKEN swarm-agent-00
docker-machine create -d virtualbox --swarm --swarm-discovery token://$SWARM_TOKEN swarm-agent-01
docker-machine create -d virtualbox --swarm --swarm-discovery token://$SWARM_TOKEN swarm-agent-02
docker-machine ls
# Apuntar consola a Docker en Swarm Master
# Point your Docker environment to the machine running the swarm master
eval $(docker-machine env --swarm swarm-master)
# Listamos nodos activos
# docker run -rm swarm list token://$SWARM_TOKEN
echo "SWARM_TOKEN: $SWARM_TOKEN"
docker info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment