diff --git a/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md b/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md index ffc765578d9..46d89a7de46 100644 --- a/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md +++ b/content/os/v1.x/en/installation/running-rancheros/workstation/docker-machine/_index.md @@ -9,7 +9,13 @@ Before we get started, you'll need to make sure that you have docker machine ins ### Downloading RancherOS -Get the latest `rancheros.iso` artifact from the RancherOS [releases](https://github.com/rancher/os/releases). +Get the latest ISO artifact from the RancherOS [releases](https://github.com/rancher/os/releases). + +Machine Driver | ISO Name +-------------- | -------------------- +VirtualBox | rancheros.iso +VMWare VSphere | rancheros-vmware.iso +VMWare Fusion | rancheros-vmware.iso ### Using Docker Machine @@ -19,20 +25,16 @@ You can use Docker Machine to launch VMs for various providers. Currently Virtua Before moving forward, you'll need to have VirtualBox installed. Download it directly from [VirtualBox](https://www.virtualbox.org/wiki/Downloads). Once you have VirtualBox and Docker Machine installed, it's just one command to get RancherOS running. -``` -$ docker-machine create -d virtualbox --virtualbox-boot2docker-url -``` +Here is an example about using the RancherOS latest link: -
+``` +$ docker-machine create -d virtualbox \ + --virtualbox-boot2docker-url https://releases.rancher.com/os/latest/rancheros.iso \ + +``` > **Note:** Instead of downloading the ISO, you can directly use the URL for the `rancheros.iso`. -Example using the RancherOS latest link: - -``` -$ docker-machine create -d virtualbox --virtualbox-boot2docker-url https://releases.rancher.com/os/latest/rancheros.iso -``` - That's it! You should now have a RancherOS host running on VirtualBox. You can verify that you have a VirtualBox VM running on your host. > **Note:** After the machine is created, Docker Machine may display some errors regarding creation, but if the VirtualBox VM is running, you should be able to [log in](#logging-into-rancheros). @@ -49,16 +51,18 @@ _Available as of v1.4_ Before moving forward, you’ll need to have VMWare VSphere installed. Once you have VMWare VSphere and Docker Machine installed, it’s just one command to get RancherOS running. -``` -$ docker-machine create --driver vmwarevsphere --vmwarevsphere-username= --vmwarevsphere-password= --vmwarevsphere-memory-size= --vmwarevsphere-boot2docker-url= --vmwarevsphere-vcenter= --vmwarevsphere-vcenter-port= --vmwarevsphere-disk-size= -``` - -> **Note:** Instead of downloading the RancherOS VMWare ISO, you can directly use the URL for the rancheros-vmware.iso. - -Example using the RancherOS VMWare latest link: +Here is an example about using the RancherOS latest link: ``` -$ docker-machine create --driver vmwarevsphere --vmwarevsphere-username --vmwarevsphere-password --vmwarevsphere-memory-size --vmwarevsphere-boot2docker-url https://releases.rancher.com/os/latest/rancheros-vmware.iso --vmwarevsphere-vcenter --vmwarevsphere-vcenter-port --vmwarevsphere-disk-size +$ docker-machine create -d vmwarevsphere \ + --vmwarevsphere-username \ + --vmwarevsphere-password \ + --vmwarevsphere-memory-size \ + --vmwarevsphere-boot2docker-url https://releases.rancher.com/os/latest/rancheros-vmware.iso \ + --vmwarevsphere-vcenter \ + --vmwarevsphere-vcenter-port \ + --vmwarevsphere-disk-size \ + ``` That’s it! You should now have a RancherOS host running on VMWare VSphere. You can verify that you have a VMWare(ESXi) VM running on your host. @@ -69,21 +73,18 @@ _Available as of v1.4_ Before moving forward, you’ll need to have VMWare Fusion installed. Once you have VMWare Fusion and Docker Machine installed, it’s just one command to get RancherOS running. -``` -$ docker-machine create --driver vmwarefusion --vmwarefusion-no-share --vmwarefusion-memory-size --vmwarefusion-boot2docker-url -``` - -> **Note:** Instead of downloading the RancherOS VMWare ISO, you can directly use the URL for the rancheros-vmware.iso. - -Example using the RancherOS VMWare latest link: +Here is an example about using the RancherOS latest link: ``` -$ docker-machine create --driver vmwarefusion --vmwarefusion-no-share --vmwarefusion-memory-size --vmwarefusion-boot2docker-url https://releases.rancher.com/os/latest/rancheros-vmware.iso +$ docker-machine create -d vmwarefusion \ + --vmwarefusion-no-share \ + --vmwarefusion-memory-size \ + --vmwarefusion-boot2docker-url https://releases.rancher.com/os/latest/rancheros-vmware.iso \ + ``` That’s it! You should now have a RancherOS host running on VMWare Fusion. You can verify that you have a VMWare Fusion VM running on your host. - ### Logging into RancherOS Logging into RancherOS follows the standard Docker Machine commands. To login into your newly provisioned RancherOS VM. diff --git a/content/os/v1.x/en/quick-start-guide/_index.md b/content/os/v1.x/en/quick-start-guide/_index.md index f9d8e7322e3..53d0d6600f0 100644 --- a/content/os/v1.x/en/quick-start-guide/_index.md +++ b/content/os/v1.x/en/quick-start-guide/_index.md @@ -10,7 +10,9 @@ If you have a specific RanchersOS machine requirements, please check out our [gu Before moving forward, you'll need to have [Docker Machine](https://docs.docker.com/machine/) and [VirtualBox](https://www.virtualbox.org/wiki/Downloads) installed. Once you have VirtualBox and Docker Machine installed, it's just one command to get RancherOS running. ``` -$ docker-machine create -d virtualbox --virtualbox-boot2docker-url https://releases.rancher.com/os/latest/rancheros.iso +$ docker-machine create -d virtualbox \ + --virtualbox-boot2docker-url https://releases.rancher.com/os/latest/rancheros.iso \ + ``` That's it! You're up and running a RancherOS instance.