Capistrano 从多个 git 存储库部署
我有 2 台服务器。托管的 Rails 应用服务器和 git 存储库服务器。两台服务器都连接到互联网(不在同一主机上)。
Rails 项目是使用 capistrano 部署的。 有时远程 git 存储库关闭,我无法部署最新更新。 我还在 Rails 服务器上克隆了存储库,因此当远程存储库服务器关闭时,我可以将更改推送到 Rails 服务器上的存储库。
配方是什么,以便我可以选择要获取的存储库。
谢谢
I have 2 servers. The hosted rails app server and git repository server. The two servers are connected with internet (not on the same host).
The rails project are deployed with capistrano.
Sometimes the remote git repository is down, I could not deploy the latest update.
I also have cloned repository on the rails server, so when the remote repository server is down, I could push my changes to the repository on rails server instead.
What is the recipe so I could choose which repository to fetch.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决此问题的一种方法是动态设置
:repository
变量。也许设置一个在
deploy:update
之前调用的任务,该任务使用git ls-remote #{repository} #{branch}
检查存储库是否存在并响应。像这样的东西(未经测试,可能不起作用!):
One way to approach this would be to set the
:repository
variable on the fly.Perhaps set up a task which gets called before
deploy:update
which usesgit ls-remote #{repository} #{branch}
to check whether the repository is there and responding.Something like this (this is untested and may not work!):