зеркало из https://github.com/docker/kitematic.git
fix can not create container from private image
This commit is contained in:
Родитель
082bfd558a
Коммит
11f8a1e015
|
@ -298,7 +298,9 @@ var DockerUtil = {
|
|||
if (repo.indexOf('/') === -1) {
|
||||
repo = 'local/' + repo;
|
||||
}
|
||||
[list[idx].namespace, list[idx].name] = repo.split('/');
|
||||
let repoSplit = repo.split('/');
|
||||
list[idx].namespace = repoSplit.shift();
|
||||
list[idx].name = repoSplit.join('/');
|
||||
});
|
||||
this.localImages = list;
|
||||
imageServerActions.updated(list);
|
||||
|
|
Загрузка…
Ссылка в новой задаче