Reputation: 206
I will work on a ROR project next month, but the server has no network , the whole company has no public network, how can I run bundle install or rvm ? I haven’t use docker, is docker suitable ?
Upvotes: 0
Views: 59
Reputation: 583
Once RVM is installed, I don't think it needs any internet connection though.
For the bundle install
, in your Gemfile, you can specify the source for your gems. By default, it's https://rubygems.org/, but nothing is preventing you to :
See the full documentation here about these two points : http://guides.rubygems.org/run-your-own-gem-server/
Upvotes: 1