$ docker pull registry.access.redhat.com/openshift3/ruby-20-rhel7
OpenShift provides s2i enabled Ruby images for building and running Ruby applications. The Ruby s2i builder image assembles your application source with any required dependencies to create a new image containing your Ruby application. This resulting image can be run either by OpenShift or by Docker.
Currently, OpenShift provides version 2.0 of Ruby.
This image comes in two flavors, depending on your needs:
RHEL 7
CentOS 7
RHEL 7 Based Image
The RHEL 7 image is available through Red Hat’s subscription registry via:
$ docker pull registry.access.redhat.com/openshift3/ruby-20-rhel7
CentOS 7 Based Image
This image is available on DockerHub. To download it:
$ docker pull openshift/ruby-20-centos7
To use these images, you can either access them directly from these image registries, or push them into your OpenShift Docker registry. Additionally, you can create an image stream that points to the image, either in your Docker registry or at the external location. Your OpenShift resources can then reference the ImageStream. You can find example ImageStream definitions for all the provided OpenShift images.
The Ruby image supports a number of environment variables which can be set to control the configuration and behavior of the Ruby runtime.
To set these environment variables, you can place them into a
.sti/environment
file
inside your source code repository, or define them in the
environment section
of the BuildConfig Source Strategy definition.
Variable name | Description |
---|---|
|
This variable specifies the environment within which the Ruby application is
deployed; for example, |
|
This variable specifies the environment within which the Ruby on Rails
application is deployed; for example, |
|
The presence of this variable disables the process of asset compilation. Asset compilation only happens when the application runs in a production environment. Therefore, you can use this variable when assets have already been compiled. |