From 11c0828781d0d4fec146d9658312eefe1c50d04f Mon Sep 17 00:00:00 2001 From: Adam Veldhousen Date: Fri, 13 Nov 2015 18:28:29 -0600 Subject: [PATCH] forgot --driver flag for creating a machine using dm up --- .bash_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bash_functions b/.bash_functions index f34ae21..8d761a2 100644 --- a/.bash_functions +++ b/.bash_functions @@ -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