Skip to content

Instantly share code, notes, and snippets.

@eschen42
Last active September 10, 2017 05:31
Show Gist options
  • Save eschen42/e317c2d0330e5e091875cf2a05e1fe8a to your computer and use it in GitHub Desktop.
Save eschen42/e317c2d0330e5e091875cf2a05e1fe8a to your computer and use it in GitHub Desktop.
RancherOS quick start

ref:

connect_rancheros

#!/bin/bash
docker-machine ssh rancher

create_rancheros

#!/bin/bash
# wget https://github.com/rancher/os/releases/download/v1.1.0/rancheros.iso
docker-machine create -d virtualbox --virtualbox-boot2docker-url ./rancheros.iso rancher

shutdown_rancheros

#!/bin/bash
docker-machine ssh rancher sudo bash -c "shutdown -P now"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment