forgot --driver flag for creating a machine using dm up
parent
3f9d8b30c3
commit
11c0828781
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue