Remove deprecated email flag from generated docker login
commands
Fixes #2135
This commit is contained in:
parent
96173485f8
commit
d6723927f7
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ angular.module('quay').directive('credentialsDialog', function () {
|
||||||
return v.replace('$', '\\$');
|
return v.replace('$', '\\$');
|
||||||
};
|
};
|
||||||
|
|
||||||
return 'docker login -e="." -u="' + escape(credentials.username) + '" -p="' + credentials.password + '" ' + Config['SERVER_HOSTNAME'];
|
return 'docker login -u="' + escape(credentials.username) + '" -p="' + credentials.password + '" ' + Config['SERVER_HOSTNAME'];
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.getDockerFilename = function(credentials) {
|
$scope.getDockerFilename = function(credentials) {
|
||||||
|
|
Reference in a new issue