Geminabox: Simple private RubyGems server on your own host
Deploy private RubyGems repository You can easily setup private RubyGems repository with authentication from geminabox Docker image: docker run - d - v / path_where_to_store_gems : /webapps/ geminabox / data -- name geminabox - p 9292 : 9292 - P - h geminabox - e PRIVATE = true - e USERNAME = myuser - e PASSWORD = mypassword spoonest / geminabox : latest don’t forget to change: /path_where_to_store_gems - path on your local machine where you want to store your gems myuser - username mypassword - password Read more about geminabox repository on GitHub. That’s all. Your repository is accessible by url http://YOUR_HOST:9292 . Now you can use it to store you own gems you don’t want to share. Don’t forget to visit geminabox page for more information about this Docker image! Installing gems form your private repository Add following line at the top of your Gemfile : source 'http://myuser:mypassword@YOUR_HOST:9292' … and use bundle inst...