Fix linking to Docker Registry since their own redirects are messed up
This commit is contained in:
parent
18ec8c0f93
commit
a1755cfbf7
1 changed files with 1 additions and 1 deletions
|
@ -4271,7 +4271,7 @@ quayApp.directive('dockerfileCommand', function () {
|
|||
'': function(pieces) {
|
||||
var rnamespace = pieces.length == 1 ? '_' : pieces[0];
|
||||
var rname = pieces[pieces.length - 1].split(':')[0];
|
||||
return 'https://index.docker.io/u/' + rnamespace + '/' + rname + '/';
|
||||
return 'https://registry.hub.docker.com/' + rnamespace + '/' + rname + '/';
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue