зеркало из https://github.com/docker/kitematic.git
Merge branch 'master' of github.com:kitematic/kitematic
This commit is contained in:
Коммит
d3c433a5d7
|
@ -102,8 +102,12 @@ var ContainerDetailsSubheader = React.createClass({
|
|||
if (!this.disableTerminal()) {
|
||||
metrics.track('Terminaled Into Container');
|
||||
var container = this.props.container;
|
||||
var shell = ContainerUtil.env(container).SHELL;
|
||||
if(typeof shell === 'undefined') {
|
||||
var shell = ContainerUtil.env(container).reduce((envs, env) => {
|
||||
envs[env[0]] = env[1];
|
||||
return envs;
|
||||
}, {}).SHELL;
|
||||
|
||||
if(!shell) {
|
||||
shell = 'sh';
|
||||
}
|
||||
machine.ip().then(ip => {
|
||||
|
|
Загрузка…
Ссылка в новой задаче