Skip to content

LLParse/docker-machine-driver-ranchervm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Machine driver for RancherVM

Latest Version License

Prerequisites

Installation

For Unix systems, run the following command:

NAME=docker-machine-driver-ranchervm && OS=`uname -s` && ARCH=`uname -m` && INSTALLPATH=/usr/local/bin/${NAME} && \
VERSION=`curl -sSfL https://raw.githubusercontent.com/llparse/${NAME}/master/VERSION` && \
curl -sSfL https://github.com/llparse/${NAME}/releases/download/${VERSION}/${NAME}-${OS}-${ARCH} \
  -o /tmp/${NAME} && chmod +x /tmp/${NAME} && sudo mv /tmp/${NAME} ${INSTALLPATH}

For other platforms, download the binary from the release page or build it yourself.