Modified docker cli to use proper shell

This commit is contained in:
TeckniX 2015-05-27 10:50:50 -04:00
parent 30ec88d918
commit dedf1d61a7
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ var DockerMachine = {
});
} else {
this.info().then(machine => {
var cmd = [resources.terminal(), `DOCKER_HOST=${machine.url} DOCKER_CERT_PATH=${path.join(util.home(), '.docker/machine/machines/' + machine.name)} DOCKER_TLS_VERIFY=1 $SHELL`];
var cmd = [resources.terminal(), `DOCKER_HOST=${machine.url} DOCKER_CERT_PATH=${path.join(util.home(), '.docker/machine/machines/' + machine.name)} DOCKER_TLS_VERIFY=1 /bin/bash`];
util.exec(cmd).then(() => {});
});
}