Merge pull request #2146 from coreos-inc/remove-email
Remove deprecated email flag from generated `docker login` commands
This commit is contained in:
commit
ac626bbd31
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ angular.module('quay').directive('credentialsDialog', function () {
|
|||
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) {
|
||||
|
|
Reference in a new issue