BretFisher / dogvscat

Sample Docker Swarm cluster stack of tools
http://dogvs.cat
MIT License
504 stars 127 forks source link

Create servers script has invalid virtualbox memory value #16

Closed awhughes closed 5 years ago

awhughes commented 5 years ago

VBoxManage: error: Invalid RAM size: 2 MB (must be in range [4, 2097152] MB)

I'm assuming you meant to provision 2 GB of memory per virtual machine.

diff --git a/create-servers.sh b/create-servers.sh
index 0d6ec0b..fdb729f 100755
--- a/create-servers.sh
+++ b/create-servers.sh
@@ -27,7 +27,7 @@ done
 #for server in {1..3}; do
 #docker-machine create \
 #  --driver=virtualbox \
-#  --virtualbox-memory=2 \
+#  --virtualbox-memory=2048 \
 #  dvc${server} &
 #done
BretFisher commented 5 years ago

Fixed, thanks!