You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-9Lines changed: 1 addition & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ Basics (learn more at [baseimage-docker](http://phusion.github.io/baseimage-dock
94
94
95
95
Language support:
96
96
97
-
* Ruby 3.0.7, 3.1.5, 3.2.4, 3.3.1 and JRuby 9.3.14.0 and 9.4.6.0.
97
+
* Ruby 3.1.5, 3.2.4, 3.3.1 and JRuby 9.3.14.0 and 9.4.6.0.
98
98
* RVM is used to manage Ruby versions. [Why RVM?](#why_rvm)
99
99
* 3.3.1 is configured as the default.
100
100
* JRuby is installed from source, but we register an APT entry for it.
@@ -129,7 +129,6 @@ Passenger-docker consists of several images, each one tailor made for a specific
129
129
130
130
**Ruby images**
131
131
132
-
*`phusion/passenger-ruby30` - Ruby 3.0.
133
132
*`phusion/passenger-ruby31` - Ruby 3.1.
134
133
*`phusion/passenger-ruby32` - Ruby 3.2.
135
134
*`phusion/passenger-ruby33` - Ruby 3.3.
@@ -181,7 +180,6 @@ So put the following in your Dockerfile:
181
180
# a list of version numbers.
182
181
FROM phusion/passenger-full:<VERSION>
183
182
# Or, instead of the 'full' variant, use one of these:
184
-
#FROM phusion/passenger-ruby30:<VERSION>
185
183
#FROM phusion/passenger-ruby31:<VERSION>
186
184
#FROM phusion/passenger-ruby32:<VERSION>
187
185
#FROM phusion/passenger-ruby33:<VERSION>
@@ -214,7 +212,6 @@ CMD ["/sbin/my_init"]
214
212
#RUN /pd_build/nodejs.sh 18
215
213
#
216
214
# Ruby support
217
-
#RUN /pd_build/ruby-3.0.*.sh
218
215
#RUN /pd_build/ruby-3.1.*.sh
219
216
#RUN /pd_build/ruby-3.2.*.sh
220
217
#RUN /pd_build/ruby-3.3.*.sh
@@ -280,8 +277,6 @@ server {
280
277
passenger_ruby /usr/bin/ruby3.2;
281
278
# For Ruby 3.1
282
279
passenger_ruby /usr/bin/ruby3.1;
283
-
# For Ruby 3.0
284
-
passenger_ruby /usr/bin/ruby3.0;
285
280
286
281
# For Python ie. Django
287
282
passenger_app_type wsgi;
@@ -452,8 +447,6 @@ We use [RVM](https://rvm.io/) to install and to manage Ruby interpreters. Becaus
452
447
The default Ruby (what the `/usr/bin/ruby` command executes) is the latest Ruby version that you've chosen to install. You can use RVM select a different version as default.
453
448
454
449
```dockerfile
455
-
# Ruby 3.0.7
456
-
RUN bash -lc 'rvm --default use ruby-3.0.7'
457
450
# Ruby 3.1.5
458
451
RUN bash -lc 'rvm --default use ruby-3.1.5'
459
452
# Ruby 3.2.4
@@ -843,7 +836,6 @@ Start a virtual machine with Docker in it. You can use the Vagrantfile that we'v
0 commit comments