While you’re working on a Ruby on Rails application, Rails’ build-in Puma
development server is serving your public
folder, no question. With
RAILS_ENV=production
, Puma doesn’t, and this is a very useful default. You
don’t want that valuable Ruby worker threads are busy serving files from the
harddrive. How can we access the application’s public folder from a different
docker container?