fix can not create container from private image

This commit is contained in:
yanan3 2018-08-23 11:50:56 +08:00
Родитель 082bfd558a
Коммит 11f8a1e015
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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);