ibmcom/jruby-ppc64le

By ibmcom

Updated over 6 years ago

JRuby (http://www.jruby.org) is an implementation of Ruby (http://www.ruby-lang.org) on the JVM.

Image
0

173

Supported Tags: 9.1.8.0

How to use the container? Create a Dockerfile in using jruby image FROM jruby:latest CMD ["./your-daemon-or-script.rb"] $ docker build -t my-ruby-app . $ docker run -it --name my-running-script my-ruby-app Run a single Ruby script For many simple, single file projects, you may find it inconvenient to write a complete Dockerfile. In such cases, you can run a Ruby script by using the Ruby Docker image directly: $ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp jruby:latest jruby your-daemon-or-script.rb

Docker Pull Command

docker pull ibmcom/jruby-ppc64le