Change the .dockercfg generator to not include the protocol or /v1
This commit is contained in:
parent
8b5e7621d2
commit
f93dd63e81
1 changed files with 1 additions and 1 deletions
|
@ -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": ""
|
||||
};
|
||||
|
|
Reference in a new issue