Address the potential memory issue when using docker-machine

This commit is contained in:
niusmallnan
2018-08-27 13:56:58 -07:00
committed by Denise
parent 99f84de326
commit f103226677
2 changed files with 4 additions and 1 deletions
@@ -3,7 +3,8 @@ title: Using Docker Machine
weight: 101
---
Before we get started, you'll need to make sure that you have docker machine installed. Download it directly from the docker machine [releases](https://github.com/docker/machine/releases).
Before we get started, you'll need to make sure that you have docker machine installed. Download it directly from the docker machine [releases](https://github.com/docker/machine/releases).
You also need to know the [memory requirements]({{< baseurl >}}/os/v1.x/en/#hardware-requirements).
> **Note:** If you create a RancherOS instance using Docker Machine, you will not be able to upgrade your version of RancherOS.
@@ -30,6 +31,7 @@ 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 \
--virtualbox-memory <MEMORY-SIZE> \
<MACHINE-NAME>
```
@@ -12,6 +12,7 @@ Before moving forward, you'll need to have [Docker Machine](https://docs.docker.
```
$ docker-machine create -d virtualbox \
--virtualbox-boot2docker-url https://releases.rancher.com/os/latest/rancheros.iso \
--virtualbox-memory 2048 \
<MACHINE-NAME>
```