You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
printInColor "1;33" "Creating machine $ORG in $DOMAIN"
if [ -z "$swarmToken" ]; then
printInColor "1;35" "get swarm token and swarm manager ip address from 'orderer' machine"
eval $(docker-machine env orderer)
swarmToken=`docker swarm join-token worker -q`
swarmManagerIp=`docker-machine ip orderer`
[ $? -ne 0 ] && printRedYellow "'orderer' machine is not available. Create 'orderer' machine first or specify swarmToken and swarmManagerIp to join to." && exit 1