Tag: remote server

Capistrano无法在应用程序部署中找到Gemfile错误

我正在尝试将我的Rails应用程序部署到生产服务器,我决定使用本指南 + RVM将其部署到DigitalOcean。 要部署我使用以下命令: cap production deploy 但是,它在某些需要gemfile的部分失败了。 这是部署失败的日志: DEBUG[323dfd0e] Command: cd /home/deploy/zwiadowcy/releases/20140628164657 && ~/.rvm/bin/rvm default do bundle install –binstubs /home/deploy/zwiadowcy/shared/bin –path /home/deploy/zwiadowcy/shared/bundle –without development test –deployment –quiet DEBUG[323dfd0e] Could not locate Gemfile cap aborted! SSHKit::Runner::ExecuteError: Exception while executing on host my_ip_address: bundle exit status: 10 bundle stdout: Nothing written bundle stderr: Nothing written 我的gemfile已包含所有必需的东西: […]