Closed pento closed 5 years ago
In startDockerMachine(), the spawn() call which runs docker-machine env is expected to return an object containing stdout. It doesn't do this, it should be using a .then(), instead.
startDockerMachine()
spawn()
docker-machine env
stdout
.then()
Fixed in #141.
In
startDockerMachine()
, thespawn()
call which runsdocker-machine env
is expected to return an object containingstdout
. It doesn't do this, it should be using a.then()
, instead.