我已经使用eb init设置了我的rails应用程序以在amazon elastic bean上部署,但是当我尝试使用eb aws.push推送该应用程序时,我得到了这个错误
git: 'aws.push' is not a git command. See 'git --help'当我尝试使用eb deploy时,它显示以下错误
Creating application version archive "0_7_0-dev-915-g60d8".
ERROR: You cannot have more than 500 Application Versions. Either
remove some Application Versions or request a limit increase.然后,我找到了上述错误的修复程序,该程序运行此命令eb labs cleanup-versions来清理旧的应用程序版本,但它显示
No application versions to delete.我应该怎么做才能修复应用程序版本限制错误?
发布于 2015-07-16 18:57:42
您有许多应用程序版本。您可以使用AWS控制台手动删除应用程序版本:
AWS控制台/弹性Beanstalk /您的应用程序/应用程序版本
https://stackoverflow.com/questions/31426011
复制相似问题