From f93dd63e8185f36f5780fb60f9e2af23a9629e7d Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 17 Sep 2014 18:20:44 -0400 Subject: [PATCH] Change the .dockercfg generator to not include the protocol or /v1 --- 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 0bcf38c74..5457b46d2 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -2909,7 +2909,7 @@ quayApp.directive('dockerAuthDialog', function (Config) { $scope.downloadCfg = function() { var auth = $.base64.encode($scope.username + ":" + $scope.token); config = {} - config[Config.getUrl('/v1/')] = { + config[Config['SERVER_HOSTNAME']] = { "auth": auth, "email": "" };