From a1755cfbf76243f3e7482454e7407f318f37609d Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 14 Jul 2014 16:34:21 -0400 Subject: [PATCH] Fix linking to Docker Registry since their own redirects are messed up --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 17e9f35c8..4cf0f19d8 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -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 + '/'; } };