forgot --driver flag for creating a machine using dm up

moveTools
Adam Veldhousen 2015-11-13 18:28:29 -06:00
parent 3f9d8b30c3
commit 11c0828781
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ function dm() {
CREATE=false
read -e -p "a machine named \"${TARGET}\" doesn't exist (yes to create): " CREATE
if [[ $CREATE == "yes" ]]; then
docker-machine create $TARGET
docker-machine create --driver="virtualbox" $TARGET
else
echo "exiting"
return 0