Search code examples
rubybitnamiruby-on-rails-5

Build and deploy packaged RoR application on Windows machine that got no Internet access


Is it possible and if so what is the best way to do it? I heard a friend talking about bitnami and so on. Please advice


Solution

  • You can save you image to tar and copy with USB and loaded it back.

    Save your mage: https://docs.docker.com/engine/reference/commandline/save/

    docker save image_name > filename.tar
    

    Load image from Tar(No internet access required): https://docs.docker.com/engine/reference/commandline/load/#examples

    docker load --input filename.tar